Answers for "pd df sample"

3

pandas sample

>>> df['num_legs'].sample(n=3, random_state=1)
fish      0
spider    8
falcon    2
Name: num_legs, dtype: int64
Posted by: Guest on June-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language