R函数切换列名

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

R function to switch column names

问题

reproducible minimal example dataset

  1. pid<-1:30
  2. y1<-rnorm(30,10,10)
  3. y2<-rnorm(30,10,10)
  4. x1<-rnorm(30,5,2)
  5. x2<-rnorm(30,5,2)
  6. data<-data.frame(pid,y1,y2,x1,x2)

This is small reproducible example, but I have more variables such as I1, I2, etc...

I am trying to make a function that can switch the function name so that 'y1' become 'y2'
and 'y2' become 'y1'
'x1' become 'x2' and 'x2' become 'x1'

  1. rename<-function(data=data,
  2. dv=y,
  3. IV=x,
  4. number_of_IV=1){
  5. rename_with(
  6. data,
  7. .fn=~gsub(
  8. pattern='1^',
  9. replacement='2',
  10. .x
  11. ),
  12. .cols=matches('^y'|'^x')
  13. )
  14. rename_with(
  15. data,
  16. .fn=~gsub(
  17. pattern='2^',
  18. replacement='1',
  19. .x
  20. )
  21. .cols=matches('^y'|'^x')
  22. )
  23. )
  24. }

However, it does not work.

  1. trouble shooting the fuction that I wrote, so that I can use that function.
英文:

reproducible minimal example dataset

  1. pid&lt;-1:30
  2. y1&lt;-rnorm(30,10,10)
  3. y2&lt;-rnorm(30,10,10)
  4. x1&lt;-rnorm(30,5,2)
  5. x2&lt;-rnorm(30,5,2)
  6. data&lt;-data.frame(pid,y1,y2,x1,x2)

This is small reproducible example, but I have more variables such as I1, I2, etc...

I am trying to make a function that can switch the function name so that 'y1' become 'y2'
and 'y2'become 'y1'
'x1' become 'x2' and 'x2' become 'x1'

  1. rename&lt;-function(data=data,
  2. dv=y,
  3. IV=x,
  4. number_of_IV=1){
  5. rename_with(
  6. data,
  7. .fn=~gsub(
  8. pattern=&#39;1^&#39;,
  9. replacement=&#39;2&#39;,
  10. .x
  11. ),
  12. .cols=matches(&#39;^y&#39;|&#39;^x&#39;)
  13. )
  14. rename_with(
  15. data,
  16. .fn=~gsub(
  17. pattern=&#39;2^&#39;,
  18. replacement=&#39;1&#39;,
  19. .x
  20. )
  21. .cols=matches(&#39;^y&#39;|&#39;^x&#39;)
  22. )
  23. )
  24. }

However, it does not work.

  1. trouble shooting the fuction that I wrote, so that I can use that function.

答案1

得分: 1

以下是翻译好的部分:

为什么你想要这个?似乎是一个 xy问题

无论如何,以下是一种方法来实现它

  1. head(data)
  2. pid x1 y1 x2 y2
  3. 1 1 5.087567 4.424669 6.830336 11.6921347
  4. 2 2 4.386710 21.870220 1.898388 21.0484717
  5. 3 3 5.154918 4.103774 7.926982 4.3101622
  6. 4 4 2.528215 3.572182 5.407407 8.3941766
  7. 5 5 6.003412 13.877344 6.188354 0.1214239
  8. 6 6 8.527333 6.971523 4.559890 7.3657691
  9. head(data) %>%
  10. rename_with(~str_replace_all(.,&quot;\\d$&quot;, ~abs(2-as.numeric(.))+1))
  11. pid x2 y2 x1 y1
  12. 1 1 5.087567 4.424669 6.830336 11.6921347
  13. 2 2 4.386710 21.870220 1.898388 21.0484717
  14. 3 3 5.154918 4.103774 7.926982 4.3101622
  15. 4 4 2.528215 3.572182 5.407407 8.3941766
  16. 5 5 6.003412 13.877344 6.188354 0.1214239
  17. 6 6 8.527333 6.971523 4.559890 7.3657691
英文:

Why would you want this? Seems like an xy problem

Anyway here is one way to do it

  1. head(data)
  2. pid x1 y1 x2 y2
  3. 1 1 5.087567 4.424669 6.830336 11.6921347
  4. 2 2 4.386710 21.870220 1.898388 21.0484717
  5. 3 3 5.154918 4.103774 7.926982 4.3101622
  6. 4 4 2.528215 3.572182 5.407407 8.3941766
  7. 5 5 6.003412 13.877344 6.188354 0.1214239
  8. 6 6 8.527333 6.971523 4.559890 7.3657691
  9. head(data) %&gt;%
  10. rename_with(~str_replace_all(.,&quot;\\d$&quot;, ~abs(2-as.numeric(.))+1))
  11. pid x2 y2 x1 y1
  12. 1 1 5.087567 4.424669 6.830336 11.6921347
  13. 2 2 4.386710 21.870220 1.898388 21.0484717
  14. 3 3 5.154918 4.103774 7.926982 4.3101622
  15. 4 4 2.528215 3.572182 5.407407 8.3941766
  16. 5 5 6.003412 13.877344 6.188354 0.1214239
  17. 6 6 8.527333 6.971523 4.559890 7.3657691

答案2

得分: 0

你可以使用 chartr1 更改为 2,将 2 更改为 1

  1. head(data, 2)
  2. # pid y1 y2 x1 x2
  3. #1 1 31.54238 -3.972442 5.178496 4.370217
  4. #2 2 22.21881 11.122397 4.384974 4.177646
  5. names(data) <- chartr("12", "21", names(data))
  6. head(data, 2)
  7. # pid y2 y1 x2 x1
  8. #1 1 31.54238 -3.972442 5.178496 4.370217
  9. #2 2 22.21881 11.122397 4.384974 4.177646
英文:

You can use chartr to change 1 to 2 and 2 to 1.

  1. head(data, 2)
  2. # pid y1 y2 x1 x2
  3. #1 1 31.54238 -3.972442 5.178496 4.370217
  4. #2 2 22.21881 11.122397 4.384974 4.177646
  5. names(data) &lt;- chartr(&quot;12&quot;, &quot;21&quot;, names(data))
  6. head(data, 2)
  7. # pid y2 y1 x2 x1
  8. #1 1 31.54238 -3.972442 5.178496 4.370217
  9. #2 2 22.21881 11.122397 4.384974 4.177646
  10. </details>

huangapple
  • 本文由 发表于 2023年4月1日 00:06:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/75900614.html
匿名

发表评论

匿名网友

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

确定