Provides often used functions and themes for working with R and ggplot, including:
write.clip(): copies values in table format (excel) to clipboard, dec = ","calc_dist: calculates distance between geocoded locationsas_numeric_ger: changes german number format to english number formatclean_ger: changes special german characters to normal characters
scale_color_eyp: color and shape palettes in EY-Parthenon colors.scale_color_colorblind: Colorblind safe palette from http://jfly.iam.u-tokyo.ac.jp/color/.
To install the development version from github, use the devtools package:
library("devtools")
install_github("tim-dim/rlytics")library("ggplot2")
library("rlytics")
ggplot(mpg, aes(displ, hwy, colour = class)) +
geom_point() +
theme_classic() +
scale_color_eyp()