tomonori
0
Q:

concact geodataframe python

import pandas as pd
df = pd.concat(list_of_dataframes)
1
train_df = pd.concat(train_class_df_list, ignore_index=True)
0
>>> s1 = pd.Series(['a', 'b'])
>>> s2 = pd.Series(['c', 'd'])
>>> pd.concat([s1, s2])
0    a
1    b
0    c
1    d
dtype: object
1

New to Communities?

Join the community