在多个列中查找百分比变化。

huangapple go评论77阅读模式
英文:

Finding the percentage change in multiple columns

问题

如果我有一个包含两列的数据框,是否有一种方法可以一次性计算这两列的百分比变化?希望能使用transform函数。

用于分别计算每列百分比变化的代码:

  1. using DataFrames: DataFrame
  2. using ShiftedArrays: lag
  3. prices = DataFrame(
  4. Dict(
  5. :blue => Float32[8.70,8.91,8.71,8.43,8.73],
  6. :orange => [10.66,11.08, 10.71, 11.59, 12.11]
  7. )
  8. )
  9. prices[:,:pct_blue] = prices.blue ./ lag(prices.blue) .- 1 #5-element vector
  10. prices[:,:pct_orange] = prices.orange ./ lag(prices.orange) .- 1 #5-element vector

而不是这样,是否有办法像这样做。当然,这是不正确的:

  1. transform!(prices, [:blue, :orange] => x -> x ./ lag(x) .- 1 => [:pct_blue, :pct_orange])
英文:

If I have a dataframe with two columns, is there a way to compute the percentage change of both the columns in one go? hopefully using the transform function

Code to compute percentage change for each column seperately

  1. using DataFrames: DataFrame
  2. using ShiftedArrays: lag
  3. prices = DataFrame(
  4. Dict(
  5. :blue => Float32[8.70,8.91,8.71,8.43,8.73],
  6. :orange => [10.66,11.08, 10.71, 11.59, 12.11]
  7. )
  8. )
  9. prices[:,:pct_blue] = prices.blue ./ lag(prices.blue) .- 1 #5-element vector
  10. prices[:,:pct_orange] = prices.orange ./ lag(prices.orange) .- 1 #5-element vector

Instead of this, isnt there a way to do something like this. ofcourse this is incorrect

  1. transform!(prices, [:blue, :orange] => x -> x ./ lag(x) .- 1 => [:pct_blue, :pct_orange])

答案1

得分: 1

=>更改为.=>,并将函数放在()[]之间,您的代码将正常工作。

  1. using DataFrames
  2. transform!(prices, [:blue, :orange] .=> (x -> x ./ lag(x) .- 1) .=> [:pct_blue, :pct_orange])
  3. #5×4 DataFrame
  4. # Row │ blue orange pct_blue pct_orange
  5. # │ Float32 Float64 Float32? Float64?
  6. #─────┼────────────────────────────────────────────────────
  7. # 1 │ 8.7 10.66 missing missing
  8. # 2 │ 8.91 11.08 0.024138 0.0393996
  9. # 3 │ 8.71 10.71 -0.0224467 -0.0333935
  10. # 4 │ 8.43 11.59 -0.0321469 0.0821662
  11. # 5 │ 8.73 12.11 0.0355871 0.0448663
英文:

Changing => to .=> and placing the function between () or [] and your code will work.

  1. using DataFrames
  2. transform!(prices, [:blue, :orange] .=> (x -> x ./ lag(x) .- 1) .=> [:pct_blue, :pct_orange])
  3. #5×4 DataFrame
  4. # Row │ blue orange pct_blue pct_orange
  5. # │ Float32 Float64 Float32? Float64?
  6. #─────┼────────────────────────────────────────────────────
  7. # 1 │ 8.7 10.66 missing missing
  8. # 2 │ 8.91 11.08 0.024138 0.0393996
  9. # 3 │ 8.71 10.71 -0.0224467 -0.0333935
  10. # 4 │ 8.43 11.59 -0.0321469 0.0821662
  11. # 5 │ 8.73 12.11 0.0355871 0.0448663

huangapple
  • 本文由 发表于 2023年6月27日 19:03:13
  • 转载请务必保留本文链接:https://go.coder-hub.com/76564210.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定