Answers for "split dataframe into multiple dataframes pandas by rows based on size"

0

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

Code answers related to "split dataframe into multiple dataframes pandas by rows based on size"

Python Answers by Framework

Browse Popular Code Answers by Language