作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何从使用脚本读取的txt文件中将5列乘以5。我只知道如何将所有列乘以一个数字,而不是一个列。
这是我读取txt文件的脚本:
d = read.table(file="tst1.txt",header=TRUE)
最佳答案
让我们假设您的数据帧d
有一个名为“number”的列(您可以使用str(d)
查看数据帧中各列的实际名称)。要将“数字”列乘以5,请使用:
# You are referring to the column "number" within the dataframe "d"
d$number * 5
# The last command only shoes the multiplication.
# If you want to replace the original values, use
d$number <- d$number * 5
# If you want to save the new values in a new column, use
d$numberX5 <- d$number * 5
关于r - 如何将data.frame中的单列乘以数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15103465/
我是一名优秀的程序员,十分优秀!