This question already has answers here:
Split code over multiple lines in an R script

(7 个回答)


7年前关闭。




如果 R 中的命令太长,是否可以将其其余部分写入下一行?

例如
tmp   =  -0.00773 + 1.5657  -0.9391  + 0.4753   - 0.1019   -0.00495

tmp   =  -0.00773 + 1.5657  -0.9391
         + 0.4753   - 0.1019   -0.00495

会给出不同的结果。

谢谢!

最佳答案

出色地...

tmp   =  (-0.00773 + 1.5657  -0.9391  +
            0.4753   - 0.1019   -0.00495)

10-08 04:09