R/export.pems.data.R

########################
########################
##export.pems.data
########################
########################

#in place
#################
#getData
#



#TO DO
################
#tidy
#document
#



#questions
###################
#develop this subject to requests 
#





########################
########################
##exportData
########################
########################

#version 0.2.0
#karl 17/09/2010


exportData <- function(data, file="tempfile.txt", ..., sep="\t", file.writer = write.table,
                       row.names = FALSE){

    if(isPEMS(data))
        data <- getData(data)
    
    file.writer(data, file = file, sep="\t", row.names = row.names)

}

Try the pems package in your browser

Any scripts or data that you put into this service are public.

pems documentation built on May 2, 2019, 5:20 p.m.