DataFrame.sample
Return a random sample of rows from DataFrame.
danfo.DataFrame.sample(num, options)
Parameters
Type
Description
Default
num
Integer
The number of rows to return. Defaults to 5, which shuffles and return all rows.
5
options
Object
seed: An integer specifying the random seed that will be used to create the distribution. Ensures reproducibility of generated samples.
{ seed: 1 }
Sample a DataFrame randomly
Sample a DataFrame randomly with seed
By setting seed
when using sample
, you can ensure that the random sampling is reproducible.
Last updated
Was this helpful?