(DEPRECATED) Writes a data.frame and its schema to Dataiku's Data Science Studio

write.dataset_with_schema(df, name, partition = "")

Arguments

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

Value

None

Details

This function writes a dataset and its schema to Dataiku's Data Science Studio. Nearly identical to the function write.dataset; however, this function also copies the data.frame's schema to 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.

Examples

# 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")
# }