Skip to content

ogsteele/plotthemes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

plotthemes

The goal of plotthemes is to provide some extra plotting themes for ease of use with ggplot2. Primarily aimed at personal use.

Installation

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("ogsteele/plotthemes")

Example

# this is an example of `theme_test_OGS()`
library(ggplot2)
library(plotthemes)
y <- c(10,10,5,20)
x <- c("A","B","C","D")
dat = data.frame(x,y)
plot = ggplot2::ggplot(dat, ggplot2::aes(x,y)) +
    ggplot2::geom_col() +
    theme_test_OGS()
plot

About

No description, website, or topics provided.

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages