6、ValueError: Wrong number of items passed 11, placement implies 1

1 问题:ValueError: Wrong number of items passed 11, placement implies 1

2 解释:表明你试图把太多维度的项数放在太少的项数里,本例子中是把11项数试图放在1项

3 源代码:

Mp['报名数']=pandas.merge(
        Mp,
        true,
        left_on='日期',
        right_index=True,
        how='left'
        )

ValueError: Wrong number of items passed 11, placement implies 1

解释:匹配生成11项维度指标,赋值给Mp['报名数']一个维度,出现报错

4 修改

CDAgg=pandas.merge(
        Mp,
        true,
        left_on='日期',
        right_index=True,
        how='left'
        )

 

你可能感兴趣的:(python运行相关问题)