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

write.dataset_schema(df, name)

Arguments

df

A data.frame. The schema of this data.frame will be written to DSS

name

The name of the DSS dataset to write to

Value

None

Details

This function writes a dataset's schema to Dataiku's Data Science Studio.

Please note that this function is now deprecated. Please use dkuWriteDatasetSchema.

Examples

# NOT RUN {
# write the iris dataset's schema 
# to Data Science Studio
write.dataset_schema(iris, "irisDataiku")
# }