Answers for "splitting the data frame to test and train pandas"

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 "splitting the data frame to test and train pandas"

Python Answers by Framework

Browse Popular Code Answers by Language