Last active
February 26, 2016 20:06
-
-
Save aurielfournier/d4bd7b0d85efa80ce32a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dat <- data.frame(a=c(01,2,3,4,2),b=c(4,3,6,5,4)) | |
ggplot()+geom_point(data=dat, aes(x=a, y=b))+ylab(paste0("\u03B4", ^13, "C", "\u2030")) | |
# I need this to be the delta symbol a super script 13, a Captal C and the per mil symbol |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
�ggplot()+geom_point(data=dat, aes(x=a, y=b))+
labs(y = expression(paste(delta^{13}, "C", "\u2030")))