Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在R中打印一个汇总表(自格式化) 。所以这些摘要包含多行,我正在使用 RStudio 和 RScripts。所以如果我执行这样的语句:
print("Line 1") print("Line 2")
我想要一个像这样的输出
Line 1 Line 2
相反,我得到
> print("Line 1") [1] "Line 1" > print("Line 2") [1] "Line 2"
什么方法可以帮助或我必须做些什么来实现所需的输出?
这将做你正在寻找的cat("Line 1 \nLine 2")
cat("Line 1 \nLine 2")
>cat("Line 1 \nLine 2") Line 1 Line 2
请参阅R - 我是否需要使用 print() 添加明确的换行符?
我认为最简单的方法是
dataframe[1:2,]
在哪里dataframe = name of your dataset(假设您使用的是表格数据)。
dataframe = name of your dataset
在这种情况下,您打印前两行和所有列(通过将向量中的第二个元素留空)。