(DEPRECATED) Writes a data.frame to Dataiku's Data Science Studio
write.dataset(df, name, partition = "")
df | The data.frame to write to Data Science Studio |
---|---|
name | The name of the dataset in data science studio to write to |
partition | The name of the partition to write to. Optional |
None
This function writes a dataset to Dataiku's Data Science Studio.
Please see Dataiku's online documentation for a description of how to use partitions in combination with R.
Please note that this function is now deprecated. Please use dkuWriteDataset.
# NOT RUN { # write the iris dataset to Data Science Studio write.dataset(iris, "irisDataiku") # write dataset to a partition of the 'counts' dataset df = data.frame(x=c(1,2,3,4)) write.dataset(df, "counts", partition="2015-01-01") # }