There is a function format_csv in package readr, which outputs csv formated output to string. It can be used as

to_console<-function(dta){
 cat(readr::format_csv(dta))
}


dta |> someoperation() |> to_console()
  • boredScientist
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Seconding clipr, it’s my go-to for when i just need to quickly check or transferring something to and from Excel.