Displaying 1 result from an estimated 1 matches for "numgoal".
Did you mean:
numeral
2011 Mar 22
1
Problem with plot histogram
Hi R-users,
I'm trying to built a plot of two series of data, but thees series
result "superimposed". The R-code is like this:
goal <- c(125, 143, 81, 26, 2, 3)
numgoal <- 0:5
lambda <- sum(goal*numgoal)/sum(goal)
plot(numgoal, goal, type="h")
x <- 0:5
y<-dpois(x, lambda)
att<-y*380
lines(x,att, type="h", col="red")
legend(x="topright", legend=c("Osservate", "Attese"), col=c("bl...