R将数据帧列的所有行除以一个数字

时间:2018-04-18 15:07:27

标签: r dataframe divide

我试图将数据帧列的所有行除以一个数字(比如10)。在我尝试之前,我认为这是一个微不足道的问题。在下面的示例中,我试图让'mm'列产生值8100,3222.2和5433.3

test <- data.frame(locations=c("81000","32222","54333"), value=c(87,54,43))
test$mm <- as.numeric(test$locations) / 10
head(test)
     locations value  mm
   1     81000    87 0.3
   2     32222    54 0.1
   3     54333    43 0.2

我做错了什么?

1 个答案:

答案 0 :(得分:1)

factors更改为character,然后应用as.numeric

> test$mm <- as.numeric(as.character(test$locations)) / 10
> test
  locations value     mm
1     81000    87 8100.0
2     32222    54 3222.2
3     54333    43 5433.3