pandas split columns for test and train from dataframe code example
Example: 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)
train=df.sample(frac=0.8,random_state=200) #random state is a seed value
test=df.drop(train.index)