common version common lifecycle common downloads common total downloads R-CMD-check

Introduction to common

When working in Base R, there are some situations where you stop and wonder: “Why isn’t there a function to do that?” For example:

- Why isn’t there a function in Base R to sort a data frame by multiple columns?
- Why isn’t there a function in Base R to get the path of the current program?
- In Base R, why is there no infix operator for concatenation?
- Why isn’t there a function in Base R to add/modify data frame labels?

The answer to all of the above questions is that there should be. The purpose of the common package is to encapsulate these types of functions, and provide them to R users in a lightweight package. These functions are particularly useful for package developers, who might want to add these capabilities to their package without creating dependencies on tidyverse.

If you have ideas for more common functions, please submit your suggestion to the github issue list.

Installation

The easiest way to install the common package is to run the following command from your R console:

install.packages("common")

Then put the following line at the top of your script:

library(common)

For examples and usage information, please visit the common documentation site at common.r-sassy.org/articles/common.html

Getting Help

If you need help, the first place to turn to is the web site at common.r-sassy.org

If you want to look at the code for the common package, visit the github page here.

If you encounter a bug or have a feature request, please submit an issue here.

See Also

The common package is part of the sassy meta-package. The sassy meta-package includes several packages that help make R easier for everyone, especially people with a background in SAS®. You can read more about the sassy package here.