knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

atslib

This is a collection of R functions from Anatoly Tsyplenkov. The package was created following the instructions from this tutorial

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("atsyplenkov/atslib")

Example

This is a basic demonstration of using two simple functions from this package:

library(atslib)
library(ggplot2)
library(extrafont)
## basic example code

ggplot(mtcars, aes(wt, mpg)) +
    geom_point() +
    labs(title = "A Lovely Plot",
         subtitle = "What can the subtitle tell us?") +
    Add_R2() +
    theme_clean()


atsyplenkov/atslib documentation built on April 21, 2024, 11:59 p.m.