我喜欢此 RStudio 博客文章中描述的有关列规格的工作流程。基本上,可以在导入后获取列规范read_csv
,然后将其保存下来以备后用。例如,从那个帖子:
mtcars2 <- read_csv(readr_example("mtcars.csv"))
#> Parsed with column specification:
#> cols(
#> mpg = col_double(),
#> cyl = col_integer(),
#> disp = col_double(),
#> hp = col_integer(),
#> drat = col_double(),
#> wt = col_double(),
#> qsec = col_double(),
#> vs = col_integer(),
#> am = col_integer(),
#> gear = col_integer(),
#> carb = col_integer()
#> )
# Once you've figured out the correct types
mtcars_spec <- write_rds(spec(mtcars2), "mtcars2-spec.rds")
# Every subsequent load
mtcars2 <- read_csv(
readr_example("mtcars.csv"),
col_types = read_rds("mtcars2-spec.rds")
)
不幸的是,规范对象本身是带有属性的列表,但这些与通过参数提供给read_csv
函数的不同列规范不匹配col_types
> mtcars_spec$cols$cyl
<collector_integer>
> str(mtcars_spec$cols$cyl)
list()
- attr(*, "class")= chr [1:2] "collector_integer" "collector"
> class(mtcars_spec)
[1] "col_spec"
此外,.rds 文件很难在 Windows 中进行编辑(至少对我而言)。
我希望能够编辑一个大col_spec
对象(例如,跳过某些列,或者以其他方式编辑类)。我可以继续猜测我需要编辑列表的字符串,如下所示:
attr(mtcars_spec$cols$cyl,"class")[1] = "collector_skip"` # this worked!
> mtcars_spec
cols(
mpg = col_double(),
cyl = col_skip(),
disp = col_double(),
hp = col_integer(),
drat = col_double(),
wt = col_double(),
qsec = col_double(),
vs = col_integer(),
am = col_integer(),
gear = col_integer(),
carb = col_integer()
)
但这似乎很尴尬。有没有更优雅的方法来更新列分类,比如在我的示例中,尝试跳过mtcars$cyl
列?或者,如果不是一种优雅的方式,一种涵盖所有可能类型的方式?我不想对如何<collector_date>
使用各种日期格式进行大量猜测。