gpt4 book ai didi

r - 在 pivot_longer 的 names_pattern 参数中为通过前缀的存在或不存在区分的多个变量编码正则表达式

转载 作者:行者123 更新时间:2023-12-04 03:22:28 25 4
gpt4 key购买 nike

我有一个数据集,我需要 pivot_longer() 在其列中包含两种变量:数量和比例。数量在物种名称下输入,比例在 P 下输入,然后是物种名称。每行代表一个小时采样周期的数据。

这是我正在处理的数据的简化版本。(编辑:我在代码中添加了另一列 RH_percent,以帮助改进正则表达式。)

sample input data

#code to recreate input data
sampledata <- read_csv("date,time,RH_percent,Cx_tarsalis,Ps_columb,PCx_tarsalis,PPs_columb
2020-07-20,19:00:00,0.25,3,4,0.03,0.04
2020-07-20,20:00:00,0.5,6,8,0.06,0.08
2020-07-20,21:00:00,0.75,9,12,0.09,0.12")

这就是我希望输出的样子: sample output data

#code to recreate desired output data
sampleoutput <- read_csv("date,time,RH_percent,species,quantity,P
2020-07-20,19:00:00,0.25,Cx_tarsalis,3,0.03
2020-07-20,19:00:00,0.25,Ps_columb,4,0.04
2020-07-20,20:00:00,0.5,Cx_tarsalis,6,0.06
2020-07-20,20:00:00,0.5,Ps_columb,8,0.08
2020-07-20,21:00:00,0.75,Cx_tarsalis,9,0.09
2020-07-20,21:00:00,0.75,Ps_columb,12,0.12")

我知道代码看起来像这样,我知道我需要在 names_pattern 参数中指定一个正则表达式:

sampledata %>% pivot_longer(cols = -c(date,time),
names_to = c(".value","species"),
names_pattern = "")

我一直在网上研究例子,包括 Pivoting vignetteRoger Peng's regexp videos on youtube但没有找到正确的 names_pattern 来获得我需要的输出。

解决了类似的问题:pivot_longer multiple variables of different kinds ,但是变量在列中的表示方式以及正则表达式中的模式与我需要的有很大不同。谢谢!

最佳答案

这是一种使用renameing

的方法
  1. 通过添加后缀 -quantity 重命名第 3 列和第 4 列
  2. 通过添加后缀 -P 重命名第 5 列和第 6 列
  3. 使用names_sep作为-并指定names_to的顺序species, .value pivot_longer
library(dplyr)
library(stringr)
library(tidyr)
sampledata %>%
rename_with(~ str_c(., '-quantity'), 3:4) %>%
rename_with(~ str_c(str_remove(., '^P'), '-P'), 5:6) %>%
pivot_longer(cols = -c(date,time),
names_to = c("species", ".value"),
names_sep = "-")

-输出

# A tibble: 6 x 5
date time species quantity P
<date> <time> <chr> <dbl> <dbl>
1 2020-07-20 19:00 Cx_tarsalis 3 0.03
2 2020-07-20 19:00 Ps_columb 4 0.04
3 2020-07-20 20:00 Cx_tarsalis 6 0.06
4 2020-07-20 20:00 Ps_columb 8 0.08
5 2020-07-20 21:00 Cx_tarsalis 9 0.09
6 2020-07-20 21:00 Ps_columb 12 0.12

或者另一种方法只是添加一个前缀,其中列名在 _ 之前只有两个字符,即那些是数量列“Q”。然后,在 names_pattern 中,捕获第一个字符 ((.)) 作为第一个捕获组,然后是其余字符 ((.*)) 作为第二个,它将表示 names_to

中指定的“.value”和“species”
sampledata %>%
rename_with(~ str_c('Q', .), matches('^.._')) %>%
pivot_longer(cols = -c(date, time),
names_to = c(".value", "species"), names_pattern = "^(.)(.*)") %>%
rename(quantity = Q)
# A tibble: 6 x 5
date time species quantity P
<date> <time> <chr> <dbl> <dbl>
1 2020-07-20 19:00 Cx_tarsalis 3 0.03
2 2020-07-20 19:00 Ps_columb 4 0.04
3 2020-07-20 20:00 Cx_tarsalis 6 0.06
4 2020-07-20 20:00 Ps_columb 8 0.08
5 2020-07-20 21:00 Cx_tarsalis 9 0.09
6 2020-07-20 21:00 Ps_columb 12 0.12

更新

对于 OP 的新数据集,在 matches 中使用 ignore.case = FALSE 因为默认情况下它是 TRUE

sampledata %>%
rename_with(~ str_c('Q', .), matches('^[A-Z][a-z]_[a-z]',
ignore.case = FALSE)) %>%
pivot_longer(cols = -c(date, time, RH_percent),
names_to = c(".value", "species"), names_pattern = "^(.)(.*)") %>%
rename(quantity = Q)

-输出

# A tibble: 6 x 6
date time RH_percent species quantity P
<date> <time> <dbl> <chr> <dbl> <dbl>
1 2020-07-20 19:00 0.25 Cx_tarsalis 3 0.03
2 2020-07-20 19:00 0.25 Ps_columb 4 0.04
3 2020-07-20 20:00 0.5 Cx_tarsalis 6 0.06
4 2020-07-20 20:00 0.5 Ps_columb 8 0.08
5 2020-07-20 21:00 0.75 Cx_tarsalis 9 0.09
6 2020-07-20 21:00 0.75 Ps_columb 12 0.12

关于r - 在 pivot_longer 的 names_pattern 参数中为通过前缀的存在或不存在区分的多个变量编码正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68230596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com