Skip to content

How to convert xts data into list

3 messages · arun, 박상규, Joshua Ulrich

#
HI,
As I said earlier, I am able to generate the plot.
pdf("Parkplot1.pdf")
?plot(1:length(zc1$Close),split(zc1$Close,row(zc1)))
?dev.off()

#the pdf is attached.
A.K.
#
chron indexes aren't well-supported in xts.  Convert the index class
to POSIXct and it will plot.

indexClass(zc) <- "POSIXct"
plot(zc)

Best,
--
Joshua Ulrich  |  about.me/joshuaulrich
FOSS Trading  |  www.fosstrading.com
On Wed, Dec 19, 2012 at 9:47 AM, ??? <birdfire94 at naver.com> wrote: