我刚刚习惯 r 并且需要使用以下等式在我的数据框中填充一个新列
exp(-(["column a"]^2/(2*10^2))
对不起,如果这真的很明显,但如果有人能帮忙写这篇文章,我将不胜感激。
谢谢你。
你的问题似乎很不完整,据我所知,你正在寻找这样的东西
> DF <- data.frame(a=1:6, b=2*(1:6)) # A dummy data.frame
> transform(DF, newColumn=exp(-(a^2/(2*10^2)))) # the eq you want to apply
a b newColumn
1 1 2 0.9950125
2 2 4 0.9801987
3 3 6 0.9559975
4 4 8 0.9231163
5 5 10 0.8824969
6 6 12 0.8352702
> DF$newColumn2 <- exp(-(DF[,"a"]^2/(2*10^2))) # the eq you want to apply other alternative
> DF
a b newColumn2
1 1 2 0.9950125
2 2 4 0.9801987
3 3 6 0.9559975
4 4 8 0.9231163
5 5 10 0.8824969
6 6 12 0.8352702