我试图了解DataFrame和NDFrame对象之间的区别。我想连接两个DataFrame,但是我不能并且有错误消息“无法连接非NDFrame对象”。对我来说,了解此错误的含义非常重要。
我试图将Series和DataFrame,ndarray和DataFrame,两个DataFrame串联起来,但我总是看到此错误。
df = pd.DataFrame(frame_)
temp_values_list = np.ones(len(df))
df[len(temp_values_list)]= (pd.Series(np.nan for x in range(len(df))))
df = pd.concat([temp_values_list, frame_], ignore_index=True