Answers for "how to randomly split a df into two in python"

3

pandas split dataframe to train and test

train=df.sample(frac=0.8,random_state=200) #random state is a seed value
test=df.drop(train.index)
Posted by: Guest on August-02-2020

Code answers related to "how to randomly split a df into two in python"

Python Answers by Framework

Browse Popular Code Answers by Language