Re: [R] How to get the transpose of R´s function forecast output and turn it into a data frame

2017-03-16 Thread Jim Lemon
Hi Paul,
As Peter noted, without knowing the structure of the the object, only
a guess can be made. Mine is:

fdf<-data.frame(Date=names(forecast),forecast=forecast)

You may want to apply as.numeric to the names.

Jim



On Thu, Mar 16, 2017 at 11:43 PM, Paul Bernal  wrote:
> Dear all,
>
> Hope you are doing great. Some R time series functions generate the
> forecasts in an horizontal way, for example:
>
> 2017 2018 20192020
> forecast12   153575
>
> but I´d like to have the output as follows:
>
>
> Date  forecast
> 2017   12
> 2018   15
> 2019   35
> 2020   75
>
> I tried using the t() function to get the transpose, but after taking the
> transpose I was not able to turn it into a data frame.
>
> Any help will be greatly appreciated,
>
> Cheers,
>
> Paul
>
> [[alternative HTML version deleted]]
>
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Re: [R] How to get the transpose of R´s function forecast output and turn it into a data frame

2017-03-16 Thread peter dalgaard
You're not giving us much to play with here. Reproducible example, please.

(Remember to send it to the list, not me.)

My immediate guess was cbind(), but without knowing the data structure, I can't 
tell for sure.

-pd

> On 16 Mar 2017, at 13:43 , Paul Bernal  wrote:
> 
> Dear all,
> 
> Hope you are doing great. Some R time series functions generate the
> forecasts in an horizontal way, for example:
> 
>2017 2018 20192020
> forecast12   153575
> 
> but I´d like to have the output as follows:
> 
> 
> Date  forecast
> 2017   12
> 2018   15
> 2019   35
> 2020   75
> 
> I tried using the t() function to get the transpose, but after taking the
> transpose I was not able to turn it into a data frame.
> 
> Any help will be greatly appreciated,
> 
> Cheers,
> 
> Paul
> 
>   [[alternative HTML version deleted]]
> 
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

-- 
Peter Dalgaard, Professor,
Center for Statistics, Copenhagen Business School
Solbjerg Plads 3, 2000 Frederiksberg, Denmark
Phone: (+45)38153501
Office: A 4.23
Email: pd@cbs.dk  Priv: pda...@gmail.com

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

[R] How to get the transpose of R´s function forecast output and turn it into a data frame

2017-03-16 Thread Paul Bernal
Dear all,

Hope you are doing great. Some R time series functions generate the
forecasts in an horizontal way, for example:

2017 2018 20192020
forecast12   153575

but I´d like to have the output as follows:


Date  forecast
2017   12
2018   15
2019   35
2020   75

I tried using the t() function to get the transpose, but after taking the
transpose I was not able to turn it into a data frame.

Any help will be greatly appreciated,

Cheers,

Paul

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.