作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
sessionInfo()
# R version 3.1.1 (2014-07-10)
# Platform: x86_64-apple-darwin10.8.0 (64-bit)
#
# attached base packages:
# [1] stats graphics grDevices utils datasets methods base
#
# other attached packages:
# [1] dplyr_0.3.0.2
#
# loaded via a namespace (and not attached):
# [1] assertthat_0.1 DBI_0.3.1 lazyeval_0.1.9 magrittr_1.0.1 parallel_3.1.1 Rcpp_0.11.3
# [7] tools_3.1.1
packageVersion("dplyr")
# [1] ‘0.3.0.2’
iris[1:10,] %>% rename(petal_length = Petal.Length)
# Sepal.Length Sepal.Width petal_length Petal.Width Species
# 1 5.1 3.5 1.4 0.2 setosa
# 2 4.9 3.0 1.4 0.2 setosa
# other attached packages:
# [1] reshape_0.8.5 dplyr_0.3.0.2
#
# loaded via a namespace (and not attached):
# [1] assertthat_0.1 chron_2.3-45 data.table_1.9.5 DBI_0.3.1 lazyeval_0.1.9
# [6] magrittr_1.0.1 parallel_3.1.1 plyr_1.8.1 Rcpp_0.11.3 reshape2_1.4
# [11] stringr_0.6.2 tidyr_0.1 tools_3.1.1
iris[1:10,] %>% rename(petal_length = Petal.Length)
# Error in rename(`iris[1:10, ]`, petal_length = Petal.Length) :
# unused argument (petal_length = Petal.Length)
iris[1:10,] %>% rename(c("Petal.Length" = "petal_length"))
# Sepal.Length Sepal.Width petal_length Petal.Width Species
# 1 5.1 3.5 1.4 0.2 setosa
# 2 4.9 3.0 1.4 0.2 setosa
最佳答案
我推荐data.table::setnames
功能。
iris %>%
data.table::setnames(
old = "Petal_length",
new = "petal_length") %>%
head
关于r - dplyr 0.3.0.2 rename() 习惯用法在加载 reshape 包时不稳定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26371279/
我编写的代码主要供个人使用,但我正在考虑发布我最初开发供个人使用的应用程序(科学模拟/可视化)。 我的一个习惯是在类中使用一个main方法来单独测试类的运行情况。我认为这在某种程度上可能是不好的(毫无
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: How do I convince programmers in my team to do TDD? 在从
假设我想测试是否有一个名为“Z”的驱动器。第一步是这样的; Get-PSProvider | Select-Object -Property Drives 这个给我; Drives: ... {C,
这是对 an old answer to a question about the necessity of functools.partial 的一种跟进: 虽然这个答案非常清楚地解释了这种现象及其
Perl 习惯很难改掉。两种语言之间的变量声明、作用域、全局/局部是不同的。是否有一组推荐的 python 语言习语可以使从 perl 编码到 python 编码的过渡不那么痛苦。 细微的变量拼写错误
我是一名优秀的程序员,十分优秀!