Print pretty data.frames/tables to console

前端 未结 5 998

Is there a way to print small data.frames to the console in a more readable manner?

For example, would it be possible to output to the console:

5条回答
  •  暖寄归人
    2020-12-03 01:44

    tibbles are printed with colour formatting in the console:

    library(tidyverse)
    
    x <- as_tibble(mtcars)
    x
    

提交回复
热议问题