Skip to content

Data visualization themes used by Algoritma Data Science School

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

AltruiMetavasi/algothemes

Repository files navigation

algothemes

Lifecycle: experimental Travis build status AppVeyor build status

Overview

algothemes provides some extra theme and scales for visualization with Algoritma Data Science School theme using ggplot2.

Installation

You can install the development version of algothemes with:

# install.packages("remotes")
remotes::install_github("bagasbgy/algothemes")

Getting started

# import libs
library(ggplot2)
library(algothemes)

# an example visualization
p <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
  geom_point(aes(colour = Species)) +
  labs(title = "Iris: Reimagined", x = "Sepal Length", y = "Sepal Width")

p

# with theme algo and light mode
p +
  theme_algo(mode = "light") +
  scale_colour_algo(mode = "light")

# with theme algo and dark mode
p +
  theme_algo(mode = "dark") +
  scale_colour_algo(mode = "dark")

About

Data visualization themes used by Algoritma Data Science School

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