You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boB Rudis 6e193987ce
twitter rant
7 years ago
R twitter rant 7 years ago
inst/rstudio twitter rant 7 years ago
man twitter rant 7 years ago
tests beginnings of send tab to twitter as image & gist link 7 years ago
.Rbuildignore twitter rant 7 years ago
.codecov.yml initial commit 7 years ago
.gitignore beginnings of send tab to twitter as image & gist link 7 years ago
.travis.yml initial commit 7 years ago
DESCRIPTION twitter rant 7 years ago
LICENSE initial commit 7 years ago
NAMESPACE twitter rant 7 years ago
NEWS.md initial commit 7 years ago
README.Rmd twitter rant 7 years ago
README.md twitter rant 7 years ago
codecov.yml initial commit 7 years ago
hrbraddins.Rproj initial commit 7 years ago
rant.jpg twitter rant 7 years ago

README.md

Project Status: Active - The project has reached a stable, usable state and is being actively developed. codecov Travis-CI Build Status

hrbraddins : Additional Addins for RStudio

The following functions are implemented:

  • bare_combine: Turn a selection of comma-separated bare strings into a - base::combine: statement
  • join_rows: Join cr/lf-separated selected rows of text into a single space-separated row

Twitter RANTS!

Use the Addins menu to bring up a dialogue for Twitter Rants!

Bare Combine

Similarly, the RStudio Addins menu selection "Bare Combine" will take a text selection and make it into a c() statement. For example:

a,b c,d,e f

or

a, b c, d, e f

will be converted to:

c("a", "b c", "d", "e f")

NOTE: not all double-quote edge cases are handled (yet).

Join Rows

Finally, unless I'm missing something, RStudio doesn't have a "join rows" option, so you can use the RStudio Addins menu selection "Join Rows" to do just that. So:

a
b
c
d

becomes:

a b c d

The best way to find out if I'm wrong about that is by doing this tho since the internet will gladly tell me if I'm wrong.

Installation

devtools::install_github("hrbrmstr/hrbraddins")