convert.csv {dataone} | R Documentation |
Convert a DataFrame to Standard CSV.
convert.csv(x, ...)
## S4 method for signature 'D1Client'
convert.csv(x, df, ...)
x |
A D1Client object |
... |
additional params passed to write.csv |
df |
the dataFrame |
the dataframe serialized as a .csv
D1Client
class description.
## Not run:
d1c <- D1Client("STAGING", "urn:node:mnStageUCSB2")
testdf <- data.frame(x=1:10,y=11:20)
sdf <- convert.csv(d1c, testdf)
## End(Not run)