Getting Started
Installation
How to install Framework
Requirements
Framework requires:
- R version 4.1 or higher
- Any R IDE — Framework supports Positron (we built Framework with it!), VS Code, and RStudio
Install from GitHub
Framework is currently only available via GitHub. Install using the remotes package:
install.packages("remotes")
remotes::install_github("table1/framework")
Verify Installation
After installation, verify Framework is working:
library(framework)
packageVersion("framework")
You should see the version number displayed.
Updating Framework
To update to the latest version:
remotes::install_github("table1/framework")