如果我编织我的RMarkdown,我得到一个结果,有以下问题:
我的代码行用完了代码块。我怎样才能避免它?是否有一个选项来获得一个“换行符”或其他东西?谢谢你的帮助。
3pmvbmvn1#
可以使用paste0()构造一个很长的字符串。例如,
paste0()
x <- "this string isn't very long, but I'd still like it to be shorter." y <- paste0("this string isn't very long, ", "but I'd still like it to be shorter.") identical(x, y) #> [1] TRUE
创建于2022年12月17日,使用reprex v2.0.2
1条答案
按热度按时间3pmvbmvn1#
可以使用
paste0()
构造一个很长的字符串。例如,创建于2022年12月17日,使用reprex v2.0.2