Data Science Desktop Survival Guide
by Graham Williams |
|||||
A Data Frame as a Dataset |
# Display the table structure of the ingested dataset.
ds[1:10,1:6] %>% print.data.frame()
Alternatively we might sample 10 random observations (dplyr::sample_n()) of 5 random variables (dplyr::select()): |