Description Usage Format Source References Examples
The data set is used to understand the sampling variation of the score function. The simulated data is available in Pawitan (2001).
1 |
A data frame with 10 observations on the following 20 variables.
Sample.1
a numeric vector
Sample.2
a numeric vector
Sample.3
a numeric vector
Sample.4
a numeric vector
Sample.5
a numeric vector
Sample.6
a numeric vector
Sample.7
a numeric vector
Sample.8
a numeric vector
Sample.9
a numeric vector
Sample.10
a numeric vector
Sample.11
a numeric vector
Sample.12
a numeric vector
Sample.13
a numeric vector
Sample.14
a numeric vector
Sample.15
a numeric vector
Sample.16
a numeric vector
Sample.17
a numeric vector
Sample.18
a numeric vector
Sample.19
a numeric vector
Sample.20
a numeric vector
Pawitan, Y. (2001). In All Likelihood. Oxford Science Publications.
Pawitan, Y. (2001). In All Likelihood. Oxford Science Publications.
1 2 3 4 5 6 7 8 9 10 11 12 | data(ps)
n <- 10
sample_means <- colMeans(ps)
poisson_score_fn <- function(theta,xbar) n*(xbar-theta)/theta
theta <- seq(from=2,to=8,by=0.2)
plot(theta,sapply(theta,poisson_score_fn,xbar=sample_means[1]),"l",xlab=
expression(lambda),ylab=expression(S(lambda)),ylim=c(-5,15))
title(main="B: Score Function Plot of the Poisson Model")
for(i in 2:20)
lines(theta,sapply(theta,poisson_score_fn,xbar=sample_means[i]),"l")
abline(v=4)
abline(h=0)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.