Skip to content

Instantly share code, notes, and snippets.

@aurielfournier
Last active February 26, 2016 20:06
Show Gist options
  • Save aurielfournier/d4bd7b0d85efa80ce32a to your computer and use it in GitHub Desktop.
Save aurielfournier/d4bd7b0d85efa80ce32a to your computer and use it in GitHub Desktop.
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
@daijiang
Copy link

�ggplot()+geom_point(data=dat, aes(x=a, y=b))+
labs(y = expression(paste(delta^{13}, "C", "\u2030")))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment