Skip to content

Instantly share code, notes, and snippets.

@mtorchiano
Created February 10, 2016 17:02
Show Gist options
  • Save mtorchiano/ab890a9659a4b1772d27 to your computer and use it in GitHub Desktop.
Save mtorchiano/ab890a9659a4b1772d27 to your computer and use it in GitHub Desktop.
Yoda Pie Chart
d=c("Do"=.5,"Do not"=.5,"Try"=0)
par(mar=c(0,0,1,5))
pie(d,col=0:2,main="Your options according to Yoda")
legend(1,1,legend=names(d),fill=0:2,bty="n",xpd=T)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment