AttributeError:无法访问“ SeriesGroupBy”对象的属性“ str”,请尝试使用“ apply”方法

时间:2019-10-30 11:30:41

标签: python pandas

我有一个从groupby获得的数据框。现在,我需要将行中的字符串转换为单独的列。我用了这个:

for(let x = 0; x < p.width; x++){
  for(let y = 0; y < p.height; y++){
    let loc = (x + y * p.width)*4;
    p.pixels[loc] = pic.pixels[loc]; //R
    p.pixels[loc + 1] = pic.pixels[loc + 1]; //G
    p.pixels[loc + 2] = pic.pixels[loc + 2]; //B
    p.pixels[loc + 3] = pic.pixels[loc + 3]; //A
  }
}

但收到该错误。

0 个答案:

没有答案