我正在尝试按我从xlsm文件中的csv文件创建的对象进行过滤 因此,当我尝试运行此代码时
char[][] kreis(char[][] zf, int xM, int yM, int r, char z){
try {
for (int x = xM - r; x <= xM + r; x++) {
int y = (int) Math.sqrt(Math.pow(r, 2) - Math.pow(x - xM, 2)) + yM;
zf[x][y] = z;
zf[x][2 * yM - y] = z;
}
} catch(IndexOutOfBoundsException e) {
System.out.println("Error, circle out of bounds.");
}
return zf;
}
我发现此错误
filtered_data =
data.loc[data.SiteCode.str.contains(frm_mwfy_to_te.Subject)]
和我要在xlsm文件中搜索的对象一样,在过滤数据后,我想更新包含该对象的单元格中的某些值
这是我的对象
TypeError: 'Series' objects are mutable, thus they cannot be hashed