Breakdowns on a robotic assembly line follow a Poisson distribution with an average of 4.5 breakdowns per day. We analyze the probability distribution and expected wait times.
plot(x=0:10,dbinom(0:10,size=10,prob=.1),main="PMF of Package Defects (n=10 & p=.1)",xlab="x",ylab="f(x)")
This is being used because we are working with cumulative values
barplot
## function (height, ...)
## UseMethod("barplot")
## <bytecode: 0x1399e4da8>
## <environment: namespace:graphics>
You can also embed plots, for example:
Note that the echo = FALSE
parameter was added to the
code chunk to prevent printing of the R code that generated the
plot.