knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(tt)
library(ggplot2)
library(lemon)
data(mtcars)
head(mtcars)
ggplot(mtcars) +
  geom_point(aes(wt, mpg)) +
  scale_x_continuous(limits = c(1, 6), breaks = seq(1, 6)) +
  scale_y_continuous(limits = c(10, 35)) +
  theme_tmth() +
  coord_capped_cart(left = "both", bottom = "both")


tomshafer/tshfr documentation built on Sept. 27, 2022, 2:42 p.m.