Writes a data.frame's schema to Dataiku's Data Science Studio
dkuWriteDatasetSchema(df, name)
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 |
None
This function writes a dataset's schema to Dataiku's Data Science Studio.
# NOT RUN { # write the iris dataset's schema # to Data Science Studio write.dataset_schema(iris, "irisDataiku") # }