R:以一种美观的方式逐行打印数据帧行

时间:2019-04-13 19:48:22

标签: r printing console

我运行了一个循环,每回合应将进度报告打印到控制台。目前,这是我的打印代码:

  estimationReportPrint=estimationReport
  if(iterationIdx>1){names(estimationReportPrint)=NULL}
  print(tail(estimationReportPrint,1))

(因此在迭代1中,最后一行打印有标题,而在更高的迭代中,最后一行打印没有标题。)

但是,结果非常难看。 (空白行和不相等的列宽。)

enter image description here

我当然希望它看起来像这样:

enter image description here

有什么建议吗? (请记住,我一次只能打印一行!)

0 个答案:

没有答案