[R] write csv file from zoo object

Gabor Grothendieck ggrothendieck at gmail.com
Mon Mar 3 23:19:01 CET 2008


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:
> # 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
>
> --
> Let's not spend our time and resources thinking about things that are
> so little or so large that all they really do for us is puff us up and
> make us feel like gods.  We are mammals, and have not exhausted the
> annoying little problems of being mammals.
>
>                                                                -K. Mullis
>
> ______________________________________________
> 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