将行复制到另一个数据框

Copy row to another dataframe

我有 2 个索引类型为 Datatimeindex 的数据帧,我想将一行复制到另一行。数据帧是:

变量:df

DateTime
2013-01-01 01:00:00    0.0
2013-01-01 02:00:00    0.0
2013-01-01 03:00:00    0.0
....
Freq: H, Length: 8759, dtype: float64

变量:consumption_year

Potência Ativa  ...    Costs
Datetime                             ...         
2019-01-01 00:00:00       11.500000  ...  1.08874
2019-01-01 01:00:00        6.500000  ...  0.52016
2019-01-01 02:00:00        5.250000  ...  0.38183
2019-01-01 03:00:00        5.250000  ...  0.38183

[8760 rows x 5 columns]

这是我的代码:

mc.run_model(tmy_data)

df=round(mc.ac.fillna(0)/1000,3)

consumption_year['PVProduction'] = df.iloc[:,[1]] #1
consumption_year['PVProduction'] = df[:,1] #2

我正在尝试将 df 的第二列复制到 consumption_year 数据框中的新列,但是 none 之前的经验有效。查看索引,我看到了 3 个主要差异:

  1. 年份(2013 和 2019)
  2. 开始时间:01:00 和 00:00
  3. 长度:8760 和 8759

我是否需要先解决这 3 个差异(使 df 的日期时间等于 consumption_year),然后才能将一行复制到另一行?如果是这样,您能否为我提供解决这些差异的解决方案。

这些是错误:

1: consumption_year['PVProduction'] = df.iloc[:,[1]] 
 raise IndexingError("Too many indexers")
pandas.core.indexing.IndexingError: Too many indexers

2: consumption_year['PVProduction'] = df[:,1]
 raise ValueError("Can only tuple-index with a MultiIndex")
ValueError: Can only tuple-index with a MultiIndex

您可以将两个数据框合并在一起。

pd.merge(df, consumption_year, left_index=True, right_index=True, how='outer')