Answers for "taking a random sample from dataframe pandas"

0

pandas random sample

# n: number of rows to be extracted randomly
# random_state fixed for reproducibility
# replace = True for extraction with replacement

df.sample(n=3, random_state=42, replace=False)
Posted by: Guest on May-12-2021
1

create random dataframe pandas

import numpy as np
import pandas as pd
df = pd.DataFrame(np.random.randint(0,100,size=(100, 4)), columns=list('ABCD'))
Posted by: Guest on October-08-2020

Code answers related to "taking a random sample from dataframe pandas"

Python Answers by Framework

Browse Popular Code Answers by Language