Created
January 18, 2016 05:14
-
-
Save jwolfson/17672c7658b14a411553 to your computer and use it in GitHub Desktop.
Carved case design using R
This file contains 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
par(mar=c(0,0,0,0)) | |
plot(x, dbeta(x,shape1=4, shape2=4), | |
type = "l", | |
ylim = c(0,4), | |
bty = "n", | |
xaxt = "n", | |
yaxt = "n", | |
xlab = "", | |
ylab = "", | |
lwd = 3) | |
sapply(seq(4.5,13,by=0.5), function(s) { | |
lines(x, dbeta(x,shape1=s, shape2=4),lwd=1) | |
}) | |
sapply(seq(4.5,8,by=0.5), function(s) { | |
lines(x, dbeta(x,shape1=4, shape2=s),lwd=1) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Saved as an SVG and uploaded to http://www.carved.com