Skip to content

write csv file from zoo object

2 messages · stephen sefick, Gabor Grothendieck

#
# chron
library(chron)
fmt.chron <- function(x) {
   chron(sub(" .*", "", x), gsub(".* (.*)", "\\1:00", x))
}
z1 <- read.zoo(SC3.csv, sep = ",", header = TRUE, FUN = fmt.chron)
z2 <- read.zoo(SC2.csv, sep = ",", header = TRUE, FUN = fmt.chron)

z3<-c(z1, z2)

write.table(z3, sep="," , "SC.csv")

How do you include the datetime column in the output file
#
See ?write.zoo

e.g.

write.zoo(z1, file = "")  # display on console
On Mon, Mar 3, 2008 at 3:55 PM, stephen sefick <ssefick at gmail.com> wrote: