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

unitscales

Travis build status Codecov test coverage

The goal of unitscales is to add commonly used scale transformation to ggplot2.

Installation

The development version is available from GitHub with:

# install.packages("devtools")
devtools::install_github("EmilHvitfeldt/unitscales")

Example

This is a basic example which shows you how to solve a common problem:

library(ggplot2)
library(unitscales)
ggplot(women, aes(weight, height)) +
  geom_point() +
  scale_y_length(base = "inch", system = "imperial", ignore = "yard") +
  scale_x_mass(base = "pound", system = "imperial")

q



EmilHvitfeldt/unitscales documentation built on June 13, 2019, 7:46 a.m.