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.

1.6 KiB

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")