read.dataset.Rd(DEPRECATED) Reads a dataset from Dataiku's Data Science Studio
read.dataset(name, partitions = NULL, sampling = NULL, columns = NULL)A data.frame with the requested data
Users can specify which partitions and columns to load, as well as a sampling scheme if the dataset is too large to fit into memory
Please note that this function is now deprecated. Please use dkuReadDataset instead.
if (FALSE) { # \dontrun{
d = read.dataset("iris")
s = fixed.sampling(nbrow=1000)
d = read.dataset("iris", sampling=s)
d = read.dataset("iris", columns=c("Sepal.Length", "Sepal.Width"))
} # }