Answers for "how tcan we take the random count of df instead of head() or tail() in python"

10

pandas sample seed

>>> 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

Code answers related to "how tcan we take the random count of df instead of head() or tail() in python"

Python Answers by Framework

Browse Popular Code Answers by Language