read.dataset(name, partitions = NULL, sampling = NULL, columns = NULL)
Reads a dataset from Dataiku's Data Science Studio
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.
## Not run: # 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")) # ## End(Not run)