Answers for "pd.df.sample"

10

pandas sample

>>> df.sample(frac=0.5, replace=True, random_state=1)
      num_legs  num_wings  num_specimen_seen
dog          4          0                  2
fish         0          0                  8
Posted by: Guest on April-13-2020
0

pandas sample

# Extract 10% of your dataframe
df.sample(frac=0.1, replace=True, random_state=1)
Posted by: Guest on November-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language