![]() |
P.Mean: Developing a website logo (created 2009-05-22).
I'm not big on graphic logos, but the Zotero website asked for one. So I wrote a short R program to create a simple logo.
Here's the code
par(mar=rep(0.1,4))
x <- seq(-3,3,length=1000)
plot(x,dnorm(x),type="l",lwd=5,axes=FALSE)
text(2.5,0.15,"P.Mean",adj=0,srt=90,cex=3)
arrows(2.5,0.13,2.5,0.03,lwd=5)
box()Here's the result.
I'm not sure if I like it, but it will do for now. Adjusting the size of the logo is a bit tricky in R, because the fonts don't scale smoothly.
This work is licensed under a
Creative
Commons Attribution 3.0 United States License. This page was written by
Steve Simon and was last modified on
2010-04-12. Need more
information? I have a page with general help
resources. You can also browse for pages similar to this one at
Category: Website details.