标签: r assign
我想知道为什么R正在打印以下赋值(就像它被调用一样):
command1 <- print("hello") # output: [1] "hello"
而R不打印对象的分配
command2 <- c(1,2,3) # no output
也没有指定其他职能
command3 <- summary(cars) # no output
答案 0 :(得分:4)
这不是赋值,而是调用print()产生输出。打印到屏幕是print()的目的。
print()