如何告诉摘要不要换行?

问题描述 投票:0回答:1

我正在尝试获取摘要以不包装其输出。但是,当我使用 5 列数据调用摘要时,它将第 5 列放在单独的行上。我希望有一种方法比手动打印迭代摘要返回的对象更容易。

plotit.r

#!/usr/bin/Rscript
noneData <- read.csv("query.log", header=FALSE, sep="\t");
cnames = c( 'vids', 'partitions', 'localvert', 'remotevert',
                    'cachehits', 'responsetime' );
colnames(noneData) <- cnames;
cachenames = c('1', '2', '3', '4', '5');
responseCompare = data.frame(
   noneData$responsetime/1000000,
   noneData$responsetime/1000000,
   noneData$responsetime/1000000,
   noneData$responsetime/1000000,
   noneData$responsetime/1000000
   );
colnames(responseCompare) <- cachenames;
print("Response Times");
summary(responseCompare);

./plotit.r #输出:

[1] "Response Times"
       1                  2                  3                  4         
 Min.   :   0.215   Min.   :   0.215   Min.   :   0.215   Min.   :   0.215
 1st Qu.: 395.202   1st Qu.: 395.202   1st Qu.: 395.202   1st Qu.: 395.202
 Median : 459.888   Median : 459.888   Median : 459.888   Median : 459.888
 Mean   : 466.726   Mean   : 466.726   Mean   : 466.726   Mean   : 466.726
 3rd Qu.: 530.122   3rd Qu.: 530.122   3rd Qu.: 530.122   3rd Qu.: 530.122
 Max.   :3275.916   Max.   :3275.916   Max.   :3275.916   Max.   :3275.916
       5          
 Min.   :   0.215 
 1st Qu.: 395.202 
 Median : 459.888 
 Mean   : 466.726 
 3rd Qu.: 530.122 
 Max.   :3275.916 
r rscript
1个回答
6
投票

options()
函数为您提供了一种在 R 控制台环境中创建副作用的方法:

 names( options() )
 options(width=120) ; cat("Response Times"); summary(responseCompare)

打印方法将仅添加“ 当它达到总共 120 个字符的“虚拟页尾”时。它会计算列的宽度,并且一次只打印一批列。

© www.soinside.com 2019 - 2024. All rights reserved.