gpt4 book ai didi

r - 选择 csv 文件的特定列包含 R 中的特定字母

转载 作者:行者123 更新时间:2023-12-02 18:08:00 28 4
gpt4 key购买 nike

使用 R 读取 csv 文件。

任何人都可以与我分享如何仅选择以 _ct 结尾的列吗?

enter image description here

最佳答案

使用 readr::read_csv() 您可以指定要选择的列(使用我们在 dplyr::select() 中使用的 tidyselection。例如,如果我们想要要选择 mtcars.csv 数据中以字母 d 开头的列,我们可以执行以下操作

library(readr)
library(dplyr)

read_csv(readr_example("mtcars.csv"), col_select = starts_with("d"))

#> Rows: 32 Columns: 2
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> dbl (2): disp, drat
#>
#> ℹ Use `spec()` to retrieve the full column specification for this data.
#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
#> # A tibble: 32 × 2
#> disp drat
#> <dbl> <dbl>
#> 1 160 3.9
#> 2 160 3.9
#> 3 108 3.85
#> 4 258 3.08
#> 5 360 3.15
#> 6 225 2.76
#> 7 360 3.21
#> 8 147. 3.69
#> 9 141. 3.92
#> 10 168. 3.92
#> # … with 22 more rows

reprex package 于 2022 年 7 月 7 日创建(v2.0.1)

关于r - 选择 csv 文件的特定列包含 R 中的特定字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72892121/

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