The units package in R is very useful in dealing with unit conversions and can be used for plotting in base plot and using the ggplot + ggforce combo. However, in the current form, units that should include Greek letters are not typeset correctly. Is there a way to have Greek letters in units displayed on the graph using the units package?
library(units)
library(ggplot2)
library(ggforce)
df = cars
df$Distance = set_units(df$dist, ft)/1000
df$Speed = set_units(df$speed, mph)
qplot(x=Speed, y=Distance, data=df) +
scale_y_unit(unit = "um")
# The Y-axis labels uses the latin u instead of the Greek mu