前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >R数据科学|3.4内容介绍及习题解答

R数据科学|3.4内容介绍及习题解答

作者头像
庄闪闪
发布2021-04-09 11:08:23
1.6K1
发布2021-04-09 11:08:23
举报
文章被收录于专栏:庄闪闪的R语言手册

3.4 使用select()选择列

通过基于变量名的操作,select()函数可以让你生成一个有用的变量子集。基本用法如下:

  • 按名称选择列
代码语言:javascript
复制
select(flights, year, month, day)
#> # A tibble: 336,776 × 3
#> year month day
#> <int> <int> <int>
#> 1 2013 1 1
#> 2 2013 1 1
#> 3 2013 1 1
#> 4 2013 1 1
#> 5 2013 1 1
#> 6 2013 1 1
#> # ... with 3.368e+05 more rows
  • 选择“year”和“day”之间的所有列(包括“year”和“day”)
代码语言:javascript
复制
select(flights, year:day)
#> # A tibble: 336,776 × 3
#> year month day
#> <int> <int> <int>
#> 1 2013 1 1
#> 2 2013 1 1
#> 3 2013 1 1
#> 4 2013 1 1
#> 5 2013 1 1
#> 6 2013 1 1
#> # ... with 3.368e+05 more rows
  • 选择不在“year”和“day”之间的所有列(不包括“year”和“day”)
代码语言:javascript
复制
select(flights, -(year:day))
#> # A tibble: 336,776 × 16
#> dep_time sched_dep_time dep_delay arr_time sched_arr_time
#> <int> <int> <dbl> <int> <int>
#> 1 517 515 2 830 819
#> 2 533 529 4 850 830
#> 3 542 540 2 923 850
#> 4 544 545 -1 1004 1022
#> 5 554 600 -6 812 837
#> 6 554 558 -4 740 728
#> # ... with 3.368e+05 more rows, and 12 more variables:
#> # arr_delay <dbl>, carrier <chr>, flight <int>,
#> # tailnum <chr>, origin <chr>, dest <chr>, air_time <dbl>,
#> # distance <dbl>, hour <dbl>, minute <dbl>,
#> # time_hour <dttm>

还可以在select()函数中使用一些辅助函数。

  • starts_with("abc"):匹配以“abc”开头的名称。
  • ends_with("xyz"):匹配以“xyz”结尾的名称。
  • contains("ijk"):匹配包含“ijk”的名称。
  • matches("(.)\1"):选择匹配正则表达式的那些变量。这个正则表达式会匹配名称中有重复字符的变量。
  • num_range("x", 1:3):匹配 x1、x2 和 x3。

3.4课后习题

答案仅供参考,如有误,望在评论区指正。

问题一

flights 数据集中选择dep_timedep_delayarr_timearr_delay通过头脑风暴找出尽可能多的方法。

解答

  • 方法一
代码语言:javascript
复制
select(flights, dep_time, dep_delay, arr_time, arr_delay)

  • 方法二
代码语言:javascript
复制
select(flights, "dep_time", "dep_delay", "arr_time", "arr_delay")

  • 方法三
代码语言:javascript
复制
select(flights, 4, 6, 7, 9)

  • 方法四
代码语言:javascript
复制
select(flights, all_of(c("dep_time", "dep_delay", "arr_time", "arr_delay")))

  • 方法五
代码语言:javascript
复制
select(flights, any_of(c("dep_time", "dep_delay", "arr_time", "arr_delay")))

  • 方法六
代码语言:javascript
复制
variables <- c("dep_time", "dep_delay", "arr_time", "arr_delay")
select(flights, all_of(variables))
  • 方法七
代码语言:javascript
复制
select(flights, starts_with("dep_"), starts_with("arr_"))

问题二

如果在select()函数中多次计入一个变量名,那么会发生什么情况?

解答

  • select()调用会忽略重复的内容。任何重复的变量只包含一次,即在它们出现的第一个位置。如果存在重复变量select()函数不会引发错误或警告,也不会输出任何消息。
代码语言:javascript
复制
select(flights, year, month, day, year, year)

  • 这种机制非常有用,因为它意味着我们可以使用select()everything()来轻松地更改列的顺序,而不必指定所有列的名称。
代码语言:javascript
复制
select(flights, arr_delay, everything())

问题三

one_of()函数的作用是什么?为什么它结合以下向量使用时非常有用?

代码语言:javascript
复制
vars <- c(
"year", "month", "day", "dep_delay", "arr_delay"
)

解答

  • one_of()函数的作用是:选择带有字符向量的变量,而不是不带引号的变量名参数。这个函数很有用,因为通过编程生成带有变量名的字符向量比生成不带引号的变量名更容易,后者更容易键入。
代码语言:javascript
复制
vars <- c("year", "month", "day", "dep_delay", "arr_delay")
select(flights, one_of(vars))
  • dplyr的最新版本中,one_of()已被弃用,而支持两个函数:all_of()any_of()。如果所有的变量都出现在数据框中,这些函数的作用是相似的。
代码语言:javascript
复制
select(flights, any_of(vars))
代码语言:javascript
复制
select(flights, all_of(vars))
  • 这些函数在严格程度上有所不同。如果其中一个变量名不存在all_of()函数将报错,而any_of()将忽略它。如果遇到未知列,one_of()将发出警告。

问题四

以下代码的运行结果是否出乎意料?选择辅助函数处理大小写的默认方式是什么?如何改变默认方式?

代码语言:javascript
复制
select(flights, contains("TIME"))

解答

  • contains()的默认行为是忽略大小写。
代码语言:javascript
复制

select(flights, contains("TIME"))
#> # A tibble: 336,776 x 6
#>   dep_time sched_dep_time arr_time sched_arr_time air_time time_hour          
#>      <int>          <int>    <int>          <int>    <dbl> <dttm>             
#> 1      517            515      830            819      227 2013-01-01 05:00:00
#> 2      533            529      850            830      227 2013-01-01 05:00:00
#> 3      542            540      923            850      160 2013-01-01 05:00:00
#> 4      544            545     1004           1022      183 2013-01-01 05:00:00
#> 5      554            600      812            837      116 2013-01-01 06:00:00
#> 6      554            558      740            728      150 2013-01-01 05:00:00
#> # … with 336,770 more rows
  • 要更改默认方式,添加参数ignore.case= FALSE
代码语言:javascript
复制
select(flights, contains("TIME", ignore.case = FALSE))
#> # A tibble: 336,776 x 0
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2020-12-13,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 庄闪闪的R语言手册 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 3.4 使用select()选择列
  • 3.4课后习题
    • 问题一
      • 解答
    • 问题二
      • 解答
    • 问题三
      • 解答
    • 问题四
      • 解答
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档