[R] How to convert xts data into list
Jim Holtman
jholtman at gmail.com
Wed Dec 19 11:25:18 CET 2012
just try
plot(zc$Close)
Sent from my iPad
On Dec 19, 2012, at 2:45, 박상규 <birdfire94 at naver.com> wrote:
> Hello,
>
>
> How can I convert Close colume of the below xts time series data into a list of Close values ?
> I'd like to plot Close values as a list.
>
>
>
> > head(zc)
> Close
> (10/15/12 09:00:00) 252.40
> (10/15/12 09:01:00) 253.10
> (10/15/12 09:02:00) 253.15
> (10/15/12 09:03:00) 253.30
> (10/15/12 09:04:00) 253.25
> (10/15/12 09:05:00) 253.45
>
>
> I tried the below command to plot it. But it failed.
>
>
> > plot(1:length(zc$Close),as.list(zc$Close))
>
>
>
> Thanks in advance,
>
>
> SK Park
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list
> 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.
More information about the R-help
mailing list