Answers for "how to split dataset into two specific amount in each dataset"

1

split pandas dataframe in two

df_new1, df_new2 = df[:10, :], df[10:, :] if len(df) > 10 else df, None
Posted by: Guest on November-26-2019
0

split coumn of df into multiple dynamic columns

d = [pd.DataFrame(df[col].tolist()).add_prefix(col) for col in df.columns]
df = pd.concat(d, axis=1)

   id0  id1   id2  value0  value1  value2
0   10   10   NaN   apple  orange    None
1   15   67   NaN  banana  orange    None
2   12   34  45.0   apple  banana  orange
Posted by: Guest on September-24-2020

Code answers related to "how to split dataset into two specific amount in each dataset"

Python Answers by Framework

Browse Popular Code Answers by Language