https://inbo.github.io/INBOtheme/
An R package with several ggplot2 themes
https://inbo.github.io/INBOtheme/
ggplot2 ggplot2-themes package r
Last synced: 2 months ago
JSON representation
An R package with several ggplot2 themes
- Host: GitHub
- URL: https://inbo.github.io/INBOtheme/
- Owner: inbo
- License: gpl-3.0
- Created: 2016-08-29T06:48:00.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T20:18:42.000Z (4 months ago)
- Last Synced: 2025-05-02T18:53:19.369Z (2 months ago)
- Topics: ggplot2, ggplot2-themes, package, r
- Language: R
- Homepage: https://inbo.github.io/INBOtheme
- Size: 23.3 MB
- Stars: 3
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codemeta: codemeta.json
- Zenodo: .zenodo.json
Awesome Lists containing this project
README
[](https://www.repostatus.org/#active)
[](https://lifecycle.r-lib.org/articles/stages.html#stable-1)
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
[](https://github.com/inbo/inbotheme/releases)
[](https://github.com/inbo/INBOtheme/actions)


[](https://app.codecov.io/gh/inbo/INBOtheme?branch=main)


[](https://doi.org/10.5281/zenodo.1219480)# INBOtheme
## Documentation
All help files and vignettes are available at https://inbo.github.io/INBOtheme
## Installation
The latest version of the package is available through the [INBO R universe](https://inbo.r-universe.dev).
```r
# Enable the INBO universe
options(
repos = c(
inbo = "https://inbo.r-universe.dev", CRAN = "https://cloud.r-project.org"
)
)
# Install the package
install.packages("INBOtheme")
```Another option is to install the package from GitHub.
```r
if (!"remotes" %in% rownames(installed.packages())) {
install.packages("remotes")
}
# install the latest version
remotes::install_github("inbo/INBOtheme")
# install a specific release
# see https://github.com/inbo/INBOtheme/releases
remotes::install_github("inbo/[email protected]")
```## Rationale
The [`ggplot2`](https://ggplot2.tidyverse.org) package has a nice and easy system to apply [themes](https://ggplot2.tidyverse.org/reference/index.html#section-themes).
The `INBOtheme` packages contains themes for the [Research Institute for Nature and Forest](https://www.vlaanderen.be/inbo), the [Flemish government](https://www.vlaanderen.be/en) and [Elsevier](https://www.elsevier.com/products/journals?producttype=journal) journals.The documentation is available at https://inbo.github.io/INBOtheme.
This includes a set of [example figures](https://inbo.github.io/INBOtheme/articles/themes.html) for each available theme.## Folder structure
The folder structure is that of a typical R packages with the mandatory `R` folder (definition of the functions) and `man` (helpfiles in Rd format).
`max-roxygen` contains some templates for the help files.
`inst` contains some auxiliary scripts are stored.
The `test` folder contains the unit tests using the infrastructure from the `testthat` package.
The `vignette` folder contains examples of the available themes.```
INBOtheme
├── inst
├── man
├── man-roxygen
├── R
├─┬ tests
│ └── testthat
└── vignettes
```