将此一维ndarray作为新列添加到panda数据框

时间:2019-10-01 04:15:26

标签: python pandas dataframe

我有一个一维的numpy ndarray。

y_pred = [1 1 0] # ndarray

我有一个看起来像这样的数据框;

df = label content_1 content_2
       1      23        21
       2      45        31
       3      24        45

我想将y_pred作为新列添加到df中,以使新的df看起来像这样;

new_df = y_pred label content_1 content_2
            1     1      23        21
            1     2      45        31
            0     3      24        45

我正在使用python 3.7

0 个答案:

没有答案