- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我目前正在进行迭代,以便将一列的值与某个乘数相乘(如果它们与另一列中的特定值匹配)。为此,我已经有了一个功能迭代:
for index, row in street_cal.iterrows():
street_cal.loc[street_cal['street_typ'] == 'motorway', 'v_length'] = street_cal['cal_length'] * 130
street_cal.loc[street_cal['street_typ'] == 'motorway_link', 'v_length'] = street_cal['cal_length'] * 130
street_cal.loc[street_cal['street_typ'] == 'trunk', 'v_length'] = street_cal['cal_length'] * 80
street_cal.loc[street_cal['street_typ'] == 'trunk_link', 'v_length'] = street_cal['cal_length'] * 80
street_cal.loc[street_cal['street_typ'] == 'primary', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'primary_link', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'secondary', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'secondary_link', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'tertiary', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'tertiary_link', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'road', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'unclassified', 'v_length'] = street_cal['cal_length'] * 50
street_cal.loc[street_cal['street_typ'] == 'residential', 'v_length'] = street_cal['cal_length'] * 30
street_cal.loc[street_cal['street_typ'] == 'living_street', 'v_length'] = street_cal['cal_length'] * 15
不幸的是,这个迭代需要相当长的时间,所以我尝试想出另一种方法来做到这一点,所以我发现了df.where
。
引用自https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.where.html :
“返回一个与 self 形状相同的对象,其对应条目来自 self,其中 cond 为 True,否则来自 other。[...]
其他:标量、NDFrame 或可调用
cond 为 False 的条目将替换为其他条目中的相应值。如果 other 可调用,则在 NDFrame 上计算并应返回标量或 NDFrame。可调用对象不得更改输入 NDFrame(尽管 pandas 不检查它)。
版本 0.18.1 中的新功能:可调用对象可以用作其他对象。”
据此,我认为我可以使用 df.where
执行与上面相同的操作,如下所示:
street_cal['v_length'] = None
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'motorway',
(street_cal['cal_length'] * v_mot), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'motorway_link',
(street_cal['cal_length'] * v_mot), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'trunk',
(street_cal['cal_length'] * v_tru), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'trunk_link',
(street_cal['cal_length'] * v_tru), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'primary',
(street_cal['cal_length'] * v_pri), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'primary_link',
(street_cal['cal_length'] * v_pri), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'secondary',
(street_cal['cal_length'] * v_sec), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'secondary_link',
(street_cal['cal_length'] * v_sec), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'tertiary',
(street_cal['cal_length'] * v_ter), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'tertiary_link',
(street_cal['cal_length'] * v_ter), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'road',
(street_cal['cal_length'] * v_roa), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'unclassified',
(street_cal['cal_length'] * v_unc), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'residential',
(street_cal['cal_length'] * v_res), axis='index')
street_cal['v_length'] = street_cal.where(street_cal['street_typ'] != 'living_street',
(street_cal['cal_length'] * v_liv), axis='index')
但是,如果我运行代码,则只有带有“living_street”的行正确完成,而所有其他行在“v_length”列中包含的数字太高。我想对于其他人来说,值(value)会不止一次地倍增,这就是它们如此之高的原因。但我不明白为什么。在这种情况下,df.where
检查“street_typ”列是否具有例如'motorway' 未写入其中,因此 'street_typ' 列中具有 'motorway' 的行应写入 other
值,在本例中为 (street_cal['cal_length' ] * v_mot)
,对吧?我想我对 df.where 的工作原理有点困惑。
最佳答案
这是另一个建议;创建缩放贴图并使用 pd.Series.map
/replace
应用它。
scaler = { 'motorway' : 130, 'motorway_link' : 130, ... }
street_cal['v_length'] = (
street_cal['cal_length'] * street_cal['street_typ'].map(scaler).fillna(1)
)
关于python - 用 df.where 替换迭代?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49433222/
努力理解标题中 5 个示例之间的区别。系列与数据框有一些用例吗?什么时候应该使用一个而不是另一个?哪些是等价的? 最佳答案 df[x] — 使用变量 x 索引列。返回 pd.Series df[[x]
在使用Jupyter Notebook时,我必须为问题标题中提到的df.info()、df.head()等单独留出空格. 有没有办法像第二张图片那样把所有这些都放在一个 block 中,并显示所有信息
我想求三列之和,我采取的方法如下: In [14]: a_pd = pd.DataFrame({'a': np.arange(3), 'b': [5, 7,
我想我们大多数人已经使用过这样的东西(至少如果你正在使用 tidyverse): library(tidyverse) example % select(- mpg) 我的问题: 我知道这部分有一
我有一个 DF,里面有大约 20,000 行。我构建了一个 Python 脚本来对这些数据(包括数据透视表)运行大量清理和数学运算。 我想将此 DF 拆分为 3 个独立的 DF,然后根据列值将这 3
我什至不知道如何表达这一点,但在 Python 中有没有一种方法可以引用等号之前的文本,而无需实际再次编写? ** 编辑 - 我在 Jupyter 中使用 python3 我似乎用了半辈子的时间来写作
在 df1 中,每个单元格值都是我想要从 df2 中获取的行的索引。 我想获取 df2 trial_ms 列中行的信息,然后根据获取的 df2 列重命名 df1 中的列。 可重现的 DF: # df1
我想转换此表 0 thg John 3.0 1 thg James 4.0 2 mol NaN 5.0 3 mol NaN NaN 4
我有一个数据框,我想从中提取 val 中的值大于 15 以及 val 不是 NA: df[ !is.na(df$val) & df$val > 15, ] 由于我假设在 R 中经常需要这样的比较,所
鉴于 coming deprecation of df.ix[...] 如何替换这段代码中的 .ix? df_1 = df.ix[:, :datetime.time(16, 50)] d
任何我可以帮助我说出 Pandas 中这两个语句之间的区别-python df.where(df['colname'] == value) 和 df[(df['colname'] == value)]
考虑 df Index A B C 0 20161001 0 24.5 1 20161001 3 26.5 2
所以我需要按“fh_status”列对行进行分组,然后对每个组执行“gini”的最小值、平均值和最大值(将有三个)。我想出了这段代码: m = (df2.groupby(['fh_status']).
我尝试计算不同公司/股票的一些 KPI。我的股票信息位于 df 中,具有以下结构 Ticker Open High Low Ad
我有一个看起来像这样的 df: gene ID Probe ID Chromosome Start Stop 1: H3F3A 539154271
nn_idx_df 包含与 xyz_df 的索引匹配的索引值。如何从 xyz_df 中的 H 列获取值并在 nn_idx_df 中创建新列以匹配 output_df 中所示的结果。我可以解决这个问题,
我目前的 DF 看起来像这样 Combinations Count 1 ('IDLY', 'VADA') 3734 6 ('DOSA', 'IDLY')
我看到了几个与此相关的问题,但我发现这些技巧都不起作用。 我正在尝试根据第二个数据帧的值填充数据帧的所有 NaN 值。第一个 df 很大,第二个 df 将充当某种键。 DF1 Par
我有两个数据帧,df1 和 df2。每个数据帧的唯一标识符是“ID”和“Prop_Number”。我需要将 df1 中的 Num1、2 和 3 列复制到 df2、1_Num 中的相应列...但我不确定
我有以下数据框: 注意:日期是索引 city morning afternoon evening midnight date 2014-05-01 Y
我是一名优秀的程序员,十分优秀!