https://github.com/briandconnelly/lato
Minimal and flexible 'ggplot2' themes using 'Lato' Typeface
https://github.com/briandconnelly/lato
ggplot2 ggplot2-themes mit-license r r-package
Last synced: 8 months ago
JSON representation
Minimal and flexible 'ggplot2' themes using 'Lato' Typeface
- Host: GitHub
- URL: https://github.com/briandconnelly/lato
- Owner: briandconnelly
- License: other
- Created: 2017-11-18T00:31:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T03:08:24.000Z (over 8 years ago)
- Last Synced: 2024-11-22T16:39:15.905Z (over 1 year ago)
- Topics: ggplot2, ggplot2-themes, mit-license, r, r-package
- Language: R
- Size: 5.89 MB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output:
md_document:
variant: markdown_github
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README_figures/README-",
fig.retina = 2
)
```
# lato
[](http://www.repostatus.org/#wip)
[](https://opensource.org/licenses/MIT)
**This package is in early development. It probably will not work well for you.**
It will also be re-named.
## Installation
This package is not ready for [CRAN](http://cran.r-project.org/) just yet, but you can use [devtools](http://cran.r-project.org/web/packages/devtools/index.html) to be wild and install install the latest and greatest development version. To do so:
```{r installation, eval=FALSE}
if(!require("devtools")) install.packages("devtools")
devtools::install_github("briandconnelly/lato")
```
## Example
```{r mtcars_example, message=FALSE}
library(ggplot2)
library(lato)
p1 <- ggplot(mtcars, aes(wt, mpg, color = as.factor(cyl) )) +
facet_grid(cyl ~ .) +
geom_line() +
geom_point() +
scale_color_hue(name = "# Cylinders") +
labs(
x = "Weight (tons)",
y = "Fuel Efficiency (mpg)",
title = "Just Buy a Convertible",
subtitle = "Lighter cars are more efficient. Shave off some weight by\nditching the roof, and drive your savings to the bank!",
caption = "Source: Motor Trend"
) +
theme_lato()
p1
```
### Dark Mode
```{r mtcars_dark, message=FALSE, warning=FALSE}
p1 + theme_lato_dark()
```
## Contributer Code of Conduct
This project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.