View source: R/select_sample.R
select_sample | R Documentation |
Function select_sample
selects subset of rows from data set.
This is useful if data is large and we need just a sample to calculate profiles.
select_sample(data, n = 100, seed = 1313)
data |
set of observations. Profile will be calculated for every observation (every row) |
n |
number of observations to select. |
seed |
seed for random number generator. |
Note that select_subsample()
function is S3 generic.
If you want to work on non standard data sources (like H2O ddf, external databases)
you should overload it.
a data frame with selected rows
library("ingredients") small_apartments <- select_sample(DALEX::apartments_test) head(small_apartments)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.