Anyone who uses R Base graphics, have a 100 and 1 tweaks that they use to make the figures more presentable. This package aims to capture the tweaks in one place. By masking standard plotting functions, we can automatically make base graphics a bit more pretty.
The package is still being developed and the graphs are subject to change. The package is on CRAN and can be installed in the usual way
install.packages("prettyB")
To install the dev version, try
devtools::install_github("jumpingrivers/prettyB")
The package can then be loaded in the usual way
library("prettyB")
All plotting functions work exactly as before, with the same inputs. The difference is that the defaults have been changed. For example, compare
op = par(mfrow = c(1, 2))
graphics::plot.default(iris$Sepal.Length, iris$Sepal.Width)
plot(iris$Sepal.Length, iris$Sepal.Width)
prettyB::reset_prettyB()
The core idea of prettyB is that no new arguments are introducted to the plot functions. This means, that no changes to existing code are required
plot(iris$Sepal.Length, iris$Sepal.Width,
xlab = "Length", ylab = "Width",
main = "The Iris data set",
sub = "I hate this data too")
The package also prettifies other functions
-
Histograms
z = rt(100, 4) graphics::hist.default(z, main = "The t-distribution") hist(z, main = "The t-distribution")
-
barplots
graphics::barplot.default(VADeaths, main = "Death Rates in Virginia") barplot(VADeaths, main = "Death Rates in Virginia")
This package is not a replacement for ggplot2 or other R related plotting packages. Instead, it has a few simple aims
- provide package authors a low dependency method of making their plots look pretty
- provide academics with a way of generating nice plots, but not worry about future changes in R
- provide a simple way for improving the look and feel of plots in teaching
Since the generated plots by prettyB use standard base graphics, with no new arguments, this makes plots future proof. As a fall-back, just don’t load the package.
I picked up the general style a few years ago, but the book Fundamentals of Data Visualization has made it a bit more consist. The author also provided a free online version.
- If you have any suggestions or find bugs, please use the github issue tracker
- Feel free to submit pull requests
- Box plots
- Vignettes: What defaults have been changed.
Development of this package was supported by Jumping Rivers