作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个数据框:
data <- data.frame(id=c(1,2,2,2),
code=c("A","B","A","B"),
area=c(23.1,56.0,45.8,78.5))
df<-cast(data,id~code,fun.aggregate=sum)
ID <- "id"
CODE <- "code"
df <- cast(data, ID~CODE, fun.aggregate=sum)
Error: Casting formula contains variables not found in molten data: ID, CODE
最佳答案
你需要构造一个公式:
cast(data, as.formula(paste(ID, CODE, sep="~")), fun.aggregate=sum)
dcast
并查看@Ananda Mahto 的评论)。
reshape
您可能也对基础 R 中的函数感兴趣。
关于r - 投{ reshape } : using variables instead of the columns' name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20145606/
我想设置一个 float值到 1.0如果一个向量等于另一个向量,并且 0.0如果向量不相等 if( v1 == v2 ) floatVal = 1.0 ; else floatVal = 0.0
有没有什么办法投listView.SelectedIndices至 List ? 我试过了 (List)reListViewAllMovies.SelectedIndices.Cast>() 但它不起
假设我有一个数据框: data <- data.frame(id=c(1,2,2,2), code=c("A","B","A","B"),
我是一名优秀的程序员,十分优秀!