this post was submitted on 22 Jun 2023
13 points (100.0% liked)

R Programming

33 readers
2 users here now

Please use this as a forum to discuss R, and learn more about it. If you have any questions about how to do specific things in R, this is the place to ask.

Getting Started

You can download R here.

You can download RStudio here. RStudio IDE, which is supported by Posit PBC, is a powerful and well-developed IDE for R. Other development environment options include Emacs addon Emacs Speak Statistics and VSCode.

Other Communities

Other communities that may be of interest across the fediverse:

Please send @a_statistician a message to recommend additional communities to add to this list.

Learning resources:

founded 1 year ago
MODERATORS
 

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()
you are viewing a single comment's thread
view the rest of the comments
[โ€“] morcution 4 points 1 year ago (1 children)

I use clipr::write_clip and clipr::read_clip - can paste to excel but also read in something you've copied from excel.

Helpful when you have a client with poorly formatted excel files, to the point that readxl won't do the job ๐Ÿ˜ญ

[โ€“] [email protected] 2 points 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.