- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
How to deal with SettingWithCopyWarning in Pandas
(16 个回答)
11 个月前关闭。
试图弄清楚为什么下面的函数会返回可怕的 SettingWithCopyWarning
...
这是我打算修改数据帧的函数 df
引用。
def remove_outliers_by_group(df, cols):
"""
Removes outliers based on median and median deviation computed using cols
:param df: The dataframe reference
:param cols: The columns to compute the median and median dev of
:return:
"""
flattened = df[cols].as_matrix().reshape(-1, )
median = np.nanmedian(flattened)
median_dev = np.nanmedian(np.abs(flattened) - median)
for col in cols:
df[col] = df[col].apply(lambda x: np.nan if get_absolute_median_z_score(x, median, median_dev) >= 2 else x)
df[col] = df[col].apply(lambda x: np.nan if get_absolute_median_z_score(x, median, median_dev) >= 2 else x)
根据这个错误:
A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy df[col] = df[col].apply(lambda x: np.nan if get_absolute_median_z_score(x, median, median_dev) >= 2 else x)
df['a'] = df['a'].apply(lambda x: ...)
的东西。 ,所以我无法想象他们所有人都做错了。
最佳答案
确保 df 是否是另一个数据框的副本。在这种情况下,您应该像这样编写代码
df = df_test.copy()
这确保 df 是副本而不是 View 。
从以下链接了解有关此警告的更多信息
https://www.youtube.com/watch?v=4R4WsDJ-KVc
关于python - SettingWithCopyWarning 使用 Pandas apply,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45615922/
假设 A 列是基于时间的,B 列是工资。 我在 for 循环中使用 if 语句,试图查找“所有低于前一个但也大于后一个的工资”。然后将新值(“YES”)分配给满足条件的行的另一列(C 列)。最后,我想
我有一个作为数据框导入的 csv 文件。该数据框经过多个过滤步骤。数据也会根据条件在列之间移动。 import numpy as np import pandas as pd df = pd.read
我一直通过使用 .loc[: (foo, bar)] 构造来避免大多数 SettingWithCopy 警告。 但我不知道如何正确构造一个案例: for sec in security_list:
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个答案) 关闭 2 年前。 我正在尝试为我的数据创建一个名为
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个答案) 关闭 2 年前。 我尝试了以下代码将列转换为“日期
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个回答) 关闭3年前. 我想用 NaN 替换 Pandas D
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个回答) 关闭5年前. Python 3.4 和 Pandas
numbers = LabelEncoder() State_Data['Quality'] = numbers.fit_transform(State_Data['Quality Paramet
我正在使用通过子设置前一个创建的数据框“副本” - 见下文: import random import pandas as pd df = pd.DataFrame({'data':list(rand
我有一个数据框,如下所示: df = index P01 unten oben RV R2_simu 2014-05-23 03:00:00 0.0
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个答案) 关闭 2 年前。 正在处理来自 的文件 http:
考虑以下示例代码 import pandas as pd import numpy as np pd.set_option('display.expand_frame_repr', False) fo
我正在尝试通过索引选择来设置数据框中列的值。 myindex = (df['city']==old_name) & (df['dt'] >= startDate) & (df['dt'] < endD
使用 SettingWithCopyWarning,有时它会指向您模块中触发警告的确切代码行(例如 here ),有时则不会(例如 here )。 没有遍历每一行代码(如果你正在审查数百行代码,这听起
我有以下代码,但不太明白为什么它会抛出警告。我读过 documentation但仍然无法理解为什么这种用法会导致警告。任何见解将不胜感激。 >>> df = pandas.DataFrame({'a'
所以我使用了一个空数据框 df=data[['ID','Matrix','Name','Country', 'Units']] df['Value']='' 我用这样的代码填充它,它在 df.Matr
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (20 个答案) 关闭 3 年前。 在我不希望出现的情况下,我会收到
这个问题在这里已经有了答案: df.loc causes a SettingWithCopyWarning warning message (1 个回答) 关闭5年前。 在 pandas 数据框中,我
背景 我刚刚将我的 Pandas 从 0.11 升级到 0.13.0rc1。现在,该应用程序弹出许多新警告。其中一个是这样的: E:\FinReporter\FM_EXT.py:449: Settin
这个问题在这里已经有了答案: How to deal with SettingWithCopyWarning in Pandas (16 个回答) 11 个月前关闭。 试图弄清楚为什么下面的函数会返回
我是一名优秀的程序员,十分优秀!