diff --git a/.Rbuildignore b/.Rbuildignore index a6da6ae..99bf696 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -5,6 +5,7 @@ ^README\.Rmd$ ^README\.md$ ^README\.html$ +^README_files$ ^NOTES.*$ ^notes.*$ ^CONDUCT\.md$ diff --git a/README.Rmd b/README.Rmd index 732b59f..cf7bedf 100644 --- a/README.Rmd +++ b/README.Rmd @@ -1,18 +1,22 @@ --- output: rmarkdown::github_document --- -```{r, echo = FALSE} -knitr::opts_chunk$set(collapse=TRUE, comment="##", fig.retina=2, fig.path = "man/figures/README-") +```{r pkg-knitr-opts, include=FALSE} +hrbrpkghelpr::global_opts() ``` -## `hrbrthemes` : Additional Themes and Theme Components for 'ggplot2' +```{r badges, results='asis', echo=FALSE, cache=FALSE} +hrbrpkghelpr::stinking_badges( + extra_lines = c( + "![downloads](https://cranlogs.r-pkg.org/badges/grand-total/hrbrthemes)", + "[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2545422.svg)](https://doi.org/10.5281/zenodo.2545422)" + ) +) +``` + +## hrbrthemes -[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active) -[![codecov](https://codecov.io/gh/hrbrmstr/hrbrthemes/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/hrbrthemes) -[![Travis-CI Build Status](https://travis-ci.org/hrbrmstr/hrbrthemes.svg?branch=master)](https://travis-ci.org/hrbrmstr/hrbrthemes) -[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/hrbrthemes)](https://cran.r-project.org/package=hrbrthemes) -![downloads](https://cranlogs.r-pkg.org/badges/grand-total/hrbrthemes) -[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2545422.svg)](https://doi.org/10.5281/zenodo.2545422) +Additional Themes and Theme Components for 'ggplot2' ---- @@ -90,14 +94,10 @@ Utilities: ### Installation -```{r nstall-ex, results='asis', echo = FALSE, cache=FALSE} +```{r install-ex, results='asis', echo = FALSE, cache=FALSE} hrbrpkghelpr::install_block() ``` -```{r message=FALSE, warning=FALSE, error=FALSE, include=FALSE} -options(width=120) -``` - ### Usage ```{r message=FALSE, warning=FALSE, error=FALSE} @@ -111,7 +111,7 @@ packageVersion("hrbrthemes") ### Base theme (Arial Narrow) -```{r fig.retina=2} +```{r an} ggplot(mtcars, aes(mpg, wt)) + geom_point() + labs(x="Fuel efficiency (mpg)", y="Weight (tons)", @@ -123,7 +123,7 @@ ggplot(mtcars, aes(mpg, wt)) + ### Roboto Condensed -```{r fig.retina=2} +```{r rc} ggplot(mtcars, aes(mpg, wt)) + geom_point() + labs(x="Fuel efficiency (mpg)", y="Weight (tons)", @@ -135,7 +135,7 @@ ggplot(mtcars, aes(mpg, wt)) + ### New FT Theme! -```{r ft, fig.retina=2} +```{r ft} ggplot(mtcars, aes(mpg, wt)) + geom_point(color = ft_cols$yellow) + labs(x="Fuel efficiency (mpg)", y="Weight (tons)", @@ -147,7 +147,7 @@ ggplot(mtcars, aes(mpg, wt)) + ### IBM Plex Sans -```{r fig.width=10, fig.height=7, fig.retina=2} +```{r ps, fig.width=10, fig.height=7} ggplot(mpg, aes(displ, hwy)) + geom_jitter(aes(color=class, fill=class), size=3, shape=21, alpha=1/2) + scale_x_continuous(expand=c(0,0), limits=c(1, 8), breaks=1:8) + @@ -168,7 +168,7 @@ flush_ticks(gg) ### Titillium Web -```{r fig.width=10, fig.height=7, fig.retina=2} +```{r tw, fig.width=10, fig.height=7} ggplot(mpg, aes(displ, hwy)) + geom_jitter(aes(color=class, fill=class), size=3, shape=21, alpha=1/2) + scale_x_continuous(expand=c(0,0), limits=c(1, 8), breaks=1:8) + @@ -189,7 +189,7 @@ flush_ticks(gg) ### Scales (Color/Fill) -```{r fig.retina=2} +```{r sc} ggplot(mtcars, aes(mpg, wt)) + geom_point(aes(color=factor(carb))) + labs(x="Fuel efficiency (mpg)", y="Weight (tons)", @@ -202,7 +202,7 @@ ggplot(mtcars, aes(mpg, wt)) + ### Scales (Axis) -```{r fig.retina=2} +```{r ax1} count(mpg, class) %>% mutate(pct=n/sum(n)) %>% ggplot(aes(class, pct)) + @@ -215,7 +215,7 @@ count(mpg, class) %>% theme_ipsum(grid="Y") ``` -```{r fig.retina=2, fig.height=6} +```{r ax2, fig.height=6} ggplot(uspopage, aes(x=Year, y=Thousands, fill=AgeGroup)) + geom_area() + scale_fill_ipsum() + @@ -229,7 +229,7 @@ ggplot(uspopage, aes(x=Year, y=Thousands, fill=AgeGroup)) + theme(legend.position="bottom") ``` -```{r fig.retina=2} +```{r ax3} update_geom_font_defaults(font_rc_light) count(mpg, class) %>% @@ -250,7 +250,7 @@ count(mpg, class) %>% ### Spellcheck ggplot2 labels -```{r fig.retina=2, message=TRUE} +```{r sp, message=TRUE} df <- data.frame(x=c(20, 25, 30), y=c(4, 4, 4), txt=c("One", "Two", "Three")) ggplot(mtcars, aes(mpg, wt)) + @@ -272,5 +272,4 @@ cloc::cloc_pkg_md() ### Code of Conduct -Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms. - +Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. \ No newline at end of file diff --git a/README.md b/README.md index 42d2d5d..98ab47a 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,29 @@ -## `hrbrthemes` : Additional Themes and Theme Components for ‘ggplot2’ - -[![Project Status: Active - The project has reached a stable, usable +[![Project Status: Active – The project has reached a stable, usable state and is being actively -developed.](https://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active) -[![codecov](https://codecov.io/gh/hrbrmstr/hrbrthemes/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/hrbrthemes) -[![Travis-CI Build +developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) +[![Signed +by](https://img.shields.io/badge/Keybase-Verified-brightgreen.svg)](https://keybase.io/hrbrmstr) +![Signed commit +%](https://img.shields.io/badge/Signed_Commits-28.8%25-lightgrey.svg) +[![Linux build Status](https://travis-ci.org/hrbrmstr/hrbrthemes.svg?branch=master)](https://travis-ci.org/hrbrmstr/hrbrthemes) -[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/hrbrthemes)](https://cran.r-project.org/package=hrbrthemes) +[![Coverage +Status](https://codecov.io/gh/hrbrmstr/hrbrthemes/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/hrbrthemes) +[![cran +checks](https://cranchecks.info/badges/worst/hrbrthemes)](https://cranchecks.info/pkgs/hrbrthemes) +[![CRAN +status](https://www.r-pkg.org/badges/version/hrbrthemes)](https://www.r-pkg.org/pkg/hrbrthemes) +![Minimal R +Version](https://img.shields.io/badge/R%3E%3D-3.2.0-blue.svg) +![License](https://img.shields.io/badge/License-MIT-blue.svg) ![downloads](https://cranlogs.r-pkg.org/badges/grand-total/hrbrthemes) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2545422.svg)](https://doi.org/10.5281/zenodo.2545422) +## hrbrthemes + +Additional Themes and Theme Components for ‘ggplot2’ + ----- This is a very focused package that provides typography-centric themes @@ -115,17 +128,20 @@ Utilities: ``` r install.packages("hrbrthemes", repos = "https://cinc.rud.is") # or -devtools::install_git("https://git.rud.is/hrbrmstr/hrbrthemes.git") +remotes::install_git("https://git.rud.is/hrbrmstr/hrbrthemes.git") # or -devtools::install_git("https://git.sr.ht/~hrbrmstr/hrbrthemes") +remotes::install_git("https://git.sr.ht/~hrbrmstr/hrbrthemes") # or -devtools::install_gitlab("hrbrmstr/hrbrthemes") +remotes::install_gitlab("hrbrmstr/hrbrthemes") # or -devtools::install_bitbucket("hrbrmstr/hrbrthemes") +remotes::install_bitbucket("hrbrmstr/hrbrthemes") # or -devtools::install_github("hrbrmstr/hrbrthemes") +remotes::install_github("hrbrmstr/hrbrthemes") ``` +NOTE: To use the ‘remotes’ install options you will need to have the +[{remotes} package](https://github.com/r-lib/remotes) installed. + ### Usage ``` r @@ -150,7 +166,7 @@ ggplot(mtcars, aes(mpg, wt)) + theme_ipsum() ``` - + ### Roboto Condensed @@ -164,7 +180,7 @@ ggplot(mtcars, aes(mpg, wt)) + theme_ipsum_rc() ``` - + ### New FT Theme\! @@ -203,7 +219,7 @@ flush_ticks(gg) ## theme(axis.text.y=element_text(vjust=c(0, rep(0.5, 3), 1))) ``` - + ### Titillium Web @@ -228,7 +244,7 @@ flush_ticks(gg) ## theme(axis.text.y=element_text(vjust=c(0, rep(0.5, 3), 1))) ``` - + ### Scales (Color/Fill) @@ -243,7 +259,7 @@ ggplot(mtcars, aes(mpg, wt)) + theme_ipsum_rc() ``` - + ### Scales (Axis) @@ -260,7 +276,7 @@ count(mpg, class) %>% theme_ipsum(grid="Y") ``` - + ``` r ggplot(uspopage, aes(x=Year, y=Thousands, fill=AgeGroup)) + @@ -276,7 +292,7 @@ ggplot(uspopage, aes(x=Year, y=Thousands, fill=AgeGroup)) + theme(legend.position="bottom") ``` - + ``` r update_geom_font_defaults(font_rc_light) @@ -297,7 +313,7 @@ count(mpg, class) %>% theme_ipsum_rc(grid="X") ``` - + ### Spellcheck ggplot2 labels @@ -318,17 +334,17 @@ gg_check(gg) ## Possible misspelled words in [caption]: (captien) ``` - + ### hrbrthemes Metrics | Lang | \# Files | (%) | LoC | (%) | Blank lines | (%) | \# Lines | (%) | | :--- | -------: | ---: | ---: | ---: | ----------: | ---: | -------: | ---: | -| R | 22 | 0.92 | 1340 | 0.92 | 259 | 0.72 | 775 | 0.82 | -| Rmd | 2 | 0.08 | 124 | 0.08 | 99 | 0.28 | 172 | 0.18 | +| R | 22 | 0.92 | 1340 | 0.91 | 259 | 0.73 | 775 | 0.82 | +| Rmd | 2 | 0.08 | 129 | 0.09 | 98 | 0.27 | 167 | 0.18 | ### Code of Conduct -Please note that this project is released with a [Contributor Code of -Conduct](CONDUCT.md). By participating in this project you agree to -abide by its terms. +Please note that this project is released with a Contributor Code of +Conduct. By participating in this project you agree to abide by its +terms. diff --git a/README_figs/README-unnamed-chunk-10-1.png b/README_figs/README-unnamed-chunk-10-1.png deleted file mode 100644 index 50faf23..0000000 Binary files a/README_figs/README-unnamed-chunk-10-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-11-1.png b/README_figs/README-unnamed-chunk-11-1.png deleted file mode 100644 index 6ac90e4..0000000 Binary files a/README_figs/README-unnamed-chunk-11-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-12-1.png b/README_figs/README-unnamed-chunk-12-1.png deleted file mode 100644 index 4528719..0000000 Binary files a/README_figs/README-unnamed-chunk-12-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-13-1.png b/README_figs/README-unnamed-chunk-13-1.png deleted file mode 100644 index 4528719..0000000 Binary files a/README_figs/README-unnamed-chunk-13-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-4-1.png b/README_figs/README-unnamed-chunk-4-1.png deleted file mode 100644 index 1204149..0000000 Binary files a/README_figs/README-unnamed-chunk-4-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-5-1.png b/README_figs/README-unnamed-chunk-5-1.png deleted file mode 100644 index 080e805..0000000 Binary files a/README_figs/README-unnamed-chunk-5-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-6-1.png b/README_figs/README-unnamed-chunk-6-1.png deleted file mode 100644 index fb697ee..0000000 Binary files a/README_figs/README-unnamed-chunk-6-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-7-1.png b/README_figs/README-unnamed-chunk-7-1.png deleted file mode 100644 index dfa75b0..0000000 Binary files a/README_figs/README-unnamed-chunk-7-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-8-1.png b/README_figs/README-unnamed-chunk-8-1.png deleted file mode 100644 index 57a5ed7..0000000 Binary files a/README_figs/README-unnamed-chunk-8-1.png and /dev/null differ diff --git a/README_figs/README-unnamed-chunk-9-1.png b/README_figs/README-unnamed-chunk-9-1.png deleted file mode 100644 index b9593e1..0000000 Binary files a/README_figs/README-unnamed-chunk-9-1.png and /dev/null differ diff --git a/README_figs/README-ft-1.png b/README_files/figure-gfm/ft-1.png similarity index 100% rename from README_figs/README-ft-1.png rename to README_files/figure-gfm/ft-1.png diff --git a/man/figures/README-unnamed-chunk-12-1.png b/README_files/figure-gfm/unnamed-chunk-10-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-12-1.png rename to README_files/figure-gfm/unnamed-chunk-10-1.png diff --git a/man/figures/README-unnamed-chunk-4-1.png b/README_files/figure-gfm/unnamed-chunk-2-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-4-1.png rename to README_files/figure-gfm/unnamed-chunk-2-1.png diff --git a/man/figures/README-unnamed-chunk-5-1.png b/README_files/figure-gfm/unnamed-chunk-3-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-5-1.png rename to README_files/figure-gfm/unnamed-chunk-3-1.png diff --git a/README_files/figure-gfm/unnamed-chunk-4-1.png b/README_files/figure-gfm/unnamed-chunk-4-1.png new file mode 100644 index 0000000..a213747 Binary files /dev/null and b/README_files/figure-gfm/unnamed-chunk-4-1.png differ diff --git a/README_files/figure-gfm/unnamed-chunk-5-1.png b/README_files/figure-gfm/unnamed-chunk-5-1.png new file mode 100644 index 0000000..790f20b Binary files /dev/null and b/README_files/figure-gfm/unnamed-chunk-5-1.png differ diff --git a/man/figures/README-unnamed-chunk-8-1.png b/README_files/figure-gfm/unnamed-chunk-6-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-8-1.png rename to README_files/figure-gfm/unnamed-chunk-6-1.png diff --git a/man/figures/README-unnamed-chunk-9-1.png b/README_files/figure-gfm/unnamed-chunk-7-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-9-1.png rename to README_files/figure-gfm/unnamed-chunk-7-1.png diff --git a/man/figures/README-unnamed-chunk-10-1.png b/README_files/figure-gfm/unnamed-chunk-8-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-10-1.png rename to README_files/figure-gfm/unnamed-chunk-8-1.png diff --git a/man/figures/README-unnamed-chunk-11-1.png b/README_files/figure-gfm/unnamed-chunk-9-1.png similarity index 100% rename from man/figures/README-unnamed-chunk-11-1.png rename to README_files/figure-gfm/unnamed-chunk-9-1.png diff --git a/README_files/figure-markdown_github/unnamed-chunk-10-1.png b/README_files/figure-markdown_github/unnamed-chunk-10-1.png deleted file mode 100644 index 6a224d2..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-10-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-10-2.png b/README_files/figure-markdown_github/unnamed-chunk-10-2.png deleted file mode 100644 index bf7ad96..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-10-2.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-4-1.png b/README_files/figure-markdown_github/unnamed-chunk-4-1.png deleted file mode 100644 index d96b998..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-4-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-5-1.png b/README_files/figure-markdown_github/unnamed-chunk-5-1.png deleted file mode 100644 index d7cd7a9..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-5-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-6-1.png b/README_files/figure-markdown_github/unnamed-chunk-6-1.png deleted file mode 100644 index 8c0aec8..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-6-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-7-1.png b/README_files/figure-markdown_github/unnamed-chunk-7-1.png deleted file mode 100644 index 5fc5ea3..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-7-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-8-1.png b/README_files/figure-markdown_github/unnamed-chunk-8-1.png deleted file mode 100644 index 5c38b44..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-8-1.png and /dev/null differ diff --git a/README_files/figure-markdown_github/unnamed-chunk-9-1.png b/README_files/figure-markdown_github/unnamed-chunk-9-1.png deleted file mode 100644 index 146ad9b..0000000 Binary files a/README_files/figure-markdown_github/unnamed-chunk-9-1.png and /dev/null differ diff --git a/inst/fonts/plex-sans/IBMPlexSans-Italic.ttf b/inst/fonts/plex-sans/IBMPlexSans-Italic.ttf deleted file mode 100644 index ecc1226..0000000 Binary files a/inst/fonts/plex-sans/IBMPlexSans-Italic.ttf and /dev/null differ diff --git a/inst/fonts/plex-sans/IBMPlexSans-LightItalic.ttf b/inst/fonts/plex-sans/IBMPlexSans-LightItalic.ttf deleted file mode 100644 index eb11bec..0000000 Binary files a/inst/fonts/plex-sans/IBMPlexSans-LightItalic.ttf and /dev/null differ diff --git a/inst/fonts/plex-sans/IBMPlexSans-MediumItalic.ttf b/inst/fonts/plex-sans/IBMPlexSans-MediumItalic.ttf deleted file mode 100644 index fe51b98..0000000 Binary files a/inst/fonts/plex-sans/IBMPlexSans-MediumItalic.ttf and /dev/null differ diff --git a/inst/fonts/plex-sans/IBMPlexSans-TextItalic.ttf b/inst/fonts/plex-sans/IBMPlexSans-TextItalic.ttf deleted file mode 100644 index 1a81117..0000000 Binary files a/inst/fonts/plex-sans/IBMPlexSans-TextItalic.ttf and /dev/null differ diff --git a/inst/fonts/plex-sans/IBMPlexSans-ThinItalic.ttf b/inst/fonts/plex-sans/IBMPlexSans-ThinItalic.ttf deleted file mode 100644 index 6400219..0000000 Binary files a/inst/fonts/plex-sans/IBMPlexSans-ThinItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-BoldItalic.ttf b/inst/fonts/public-sans/PublicSans-BoldItalic.ttf deleted file mode 100644 index ca2fca7..0000000 Binary files a/inst/fonts/public-sans/PublicSans-BoldItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-ExtraLightItalic.ttf b/inst/fonts/public-sans/PublicSans-ExtraLightItalic.ttf deleted file mode 100644 index e87d203..0000000 Binary files a/inst/fonts/public-sans/PublicSans-ExtraLightItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-Italic.ttf b/inst/fonts/public-sans/PublicSans-Italic.ttf deleted file mode 100644 index 435cc25..0000000 Binary files a/inst/fonts/public-sans/PublicSans-Italic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-LightItalic.ttf b/inst/fonts/public-sans/PublicSans-LightItalic.ttf deleted file mode 100644 index 5e20556..0000000 Binary files a/inst/fonts/public-sans/PublicSans-LightItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-MediumItalic.ttf b/inst/fonts/public-sans/PublicSans-MediumItalic.ttf deleted file mode 100644 index d4dd0f6..0000000 Binary files a/inst/fonts/public-sans/PublicSans-MediumItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-SemiBoldItalic.ttf b/inst/fonts/public-sans/PublicSans-SemiBoldItalic.ttf deleted file mode 100644 index f1a7f75..0000000 Binary files a/inst/fonts/public-sans/PublicSans-SemiBoldItalic.ttf and /dev/null differ diff --git a/inst/fonts/public-sans/PublicSans-ThinItalic.ttf b/inst/fonts/public-sans/PublicSans-ThinItalic.ttf deleted file mode 100644 index e37dd5c..0000000 Binary files a/inst/fonts/public-sans/PublicSans-ThinItalic.ttf and /dev/null differ diff --git a/inst/fonts/roboto-condensed/RobotoCondensed-BoldItalic.ttf b/inst/fonts/roboto-condensed/RobotoCondensed-BoldItalic.ttf deleted file mode 100755 index aaf9fe0..0000000 Binary files a/inst/fonts/roboto-condensed/RobotoCondensed-BoldItalic.ttf and /dev/null differ diff --git a/inst/fonts/roboto-condensed/RobotoCondensed-Italic.ttf b/inst/fonts/roboto-condensed/RobotoCondensed-Italic.ttf deleted file mode 100755 index d2b611f..0000000 Binary files a/inst/fonts/roboto-condensed/RobotoCondensed-Italic.ttf and /dev/null differ diff --git a/inst/fonts/roboto-condensed/RobotoCondensed-LightItalic.ttf b/inst/fonts/roboto-condensed/RobotoCondensed-LightItalic.ttf deleted file mode 100755 index a08f3f4..0000000 Binary files a/inst/fonts/roboto-condensed/RobotoCondensed-LightItalic.ttf and /dev/null differ diff --git a/inst/fonts/titillium-web/TitilliumWeb-BoldItalic.ttf b/inst/fonts/titillium-web/TitilliumWeb-BoldItalic.ttf deleted file mode 100755 index 9c23035..0000000 Binary files a/inst/fonts/titillium-web/TitilliumWeb-BoldItalic.ttf and /dev/null differ diff --git a/inst/fonts/titillium-web/TitilliumWeb-Italic.ttf b/inst/fonts/titillium-web/TitilliumWeb-Italic.ttf deleted file mode 100755 index 950a07a..0000000 Binary files a/inst/fonts/titillium-web/TitilliumWeb-Italic.ttf and /dev/null differ diff --git a/inst/fonts/titillium-web/TitilliumWeb-LightItalic.ttf b/inst/fonts/titillium-web/TitilliumWeb-LightItalic.ttf deleted file mode 100755 index 2917b2b..0000000 Binary files a/inst/fonts/titillium-web/TitilliumWeb-LightItalic.ttf and /dev/null differ diff --git a/man/figures/README-an-1.png b/man/figures/README-an-1.png new file mode 100644 index 0000000..5d620ab Binary files /dev/null and b/man/figures/README-an-1.png differ diff --git a/man/figures/README-ax1-1.png b/man/figures/README-ax1-1.png new file mode 100644 index 0000000..89b3885 Binary files /dev/null and b/man/figures/README-ax1-1.png differ diff --git a/man/figures/README-ax2-1.png b/man/figures/README-ax2-1.png new file mode 100644 index 0000000..f6bb495 Binary files /dev/null and b/man/figures/README-ax2-1.png differ diff --git a/man/figures/README-ax3-1.png b/man/figures/README-ax3-1.png new file mode 100644 index 0000000..7549b2e Binary files /dev/null and b/man/figures/README-ax3-1.png differ diff --git a/man/figures/README-ft-1.png b/man/figures/README-ft-1.png index 8146d3c..3b3d6bb 100644 Binary files a/man/figures/README-ft-1.png and b/man/figures/README-ft-1.png differ diff --git a/man/figures/README-ps-1.png b/man/figures/README-ps-1.png new file mode 100644 index 0000000..429eebe Binary files /dev/null and b/man/figures/README-ps-1.png differ diff --git a/man/figures/README-rc-1.png b/man/figures/README-rc-1.png new file mode 100644 index 0000000..733f237 Binary files /dev/null and b/man/figures/README-rc-1.png differ diff --git a/man/figures/README-sc-1.png b/man/figures/README-sc-1.png new file mode 100644 index 0000000..84d5fa3 Binary files /dev/null and b/man/figures/README-sc-1.png differ diff --git a/man/figures/README-sp-1.png b/man/figures/README-sp-1.png new file mode 100644 index 0000000..de49270 Binary files /dev/null and b/man/figures/README-sp-1.png differ diff --git a/man/figures/README-tw-1.png b/man/figures/README-tw-1.png new file mode 100644 index 0000000..8a459de Binary files /dev/null and b/man/figures/README-tw-1.png differ diff --git a/man/figures/README-unnamed-chunk-6-1.png b/man/figures/README-unnamed-chunk-6-1.png deleted file mode 100644 index 5d28dc4..0000000 Binary files a/man/figures/README-unnamed-chunk-6-1.png and /dev/null differ diff --git a/man/figures/README-unnamed-chunk-7-1.png b/man/figures/README-unnamed-chunk-7-1.png deleted file mode 100644 index 9fcccdc..0000000 Binary files a/man/figures/README-unnamed-chunk-7-1.png and /dev/null differ