Every line of 'concatenate pandas dataframes vertically' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
29 def _concat(df, type): 30 if df is None: 31 df = pd.DataFrame(_object_blocks[type]) 32 else: 33 _df = pd.DataFrame(_object_blocks[type]) 34 df = pd.concat([df, _df], sort=True) 35 return df
56 def _concat_df(data, temp): 57 58 oh = onehot(data) 59 temp = pd.concat([temp, oh], axis=1) 60 61 return temp