Answers for "pandas random sample rows"

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
0

random rows pandas

# To get 3 random rows
# each time it gives 3 different rows
  
# df.sample(3) or
df.sample(n = 3)
Posted by: Guest on April-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language