1

meaningful除了还选择了该列之外,这按预期工作。我只想选择以下列:

mean...summary, mean.conf.low...summary,mean.conf.high...summary

我怎样才能做到这一点?

library(tidyverse)

# dataframe
df <- structure(
  list(
    group = structure(1:2, .Label = c("a", "b"), class = "factor"),
    meaningful = c(0.98, 1.39333333333333),
    mean...summary = c(0.98,
                       1.39333333333333),
    n...summary = c(3L, 3L),
    mean.conf.low...summary = c(0.717103575690863,
                                0.921129311562406),
    mean.conf.high...summary = c(1.24289642430914,
                                 1.86553735510426)
  ),
  class = c("tbl_df", "tbl", "data.frame"),
  row.names = c(NA, -2L)
)

# changing few columns
df %>%
  dplyr::mutate_at(
    .tbl = .,
    .vars = dplyr::vars(dplyr::matches("^mean...|^mean.conf")),
    .funs = ~ format(round(x = ., digits = 3), nsmall = 3)
  )
#> # A tibble: 2 x 6
#>   group meaningful mean...summary n...summary mean.conf.low...~ mean.conf.high.~
#>   <fct> <chr>      <chr>                <int> <chr>             <chr>           
#> 1 a     0.980      0.980                    3 0.717             1.243           
#> 2 b     1.393      1.393                    3 0.921             1.866

reprex 包(v0.3.0)于 2019 年 11 月 22 日创建

4

1 回答 1

3

..在正则表达式中具有特殊含义,因此您可以跳过它并使用\\, 例如 matches("^mean\\.\\.\\.|^mean\\.conf")或将其视为文字matches("^mean\\.{3}|^mean\\.conf")

于 2019-11-22T12:45:33.037 回答