作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 R's stats
包并想循环遍历 column[x]
在 all the rows of a dataframe
,对each cell
中的数据进行操作在带有函数的列中并将结果传递给新列(calculated result
中的 new column
与 column[x]
中的数据对齐)
我有两个问题:
R articles
中似乎不鼓励循环我读了。是否有替代方法,如果没有,是否有人有如何执行循环的示例? 最佳答案
没有任何例子,很难知道如何回应。但是,您所描述的基本情况是:
#Just a very simple data frame
dat <- data.frame(x = c(1, 2, 3))
#Compute the squared value of each value in x
dat$y <- dat$x^2
#See the resultant data.frame, now with column y
dat
dat$y <- dat$x^2
for(i in 1:length(dat$x)){
dat$y[i] <- dat$x[i]^2
}
关于r - 循环遍历 R 中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1621848/
我是一名优秀的程序员,十分优秀!