## File Name: rasch_mml2_difference_quotient.R
## File Version: 0.12
rasch_mml2_difference_quotient <- function(ll0, ll1, ll2, h, eps=1e-6)
{
# first order derivative
# f(x+h) - f(x-h)=2*f'(x)*h
d1 <- ( ll1 - ll2 ) / ( 2 * h ) # negative sign?
# second order derivative
# f(x+h)+f(x-h)=2*f(x) + f''(x)*h^2
d2 <- ( ll1 + ll2 - 2*ll0 ) / h^2
# change in item difficulty
d2[ abs(d2) < eps ] <- eps
#--- output
res <- list( d1=d1, d2=d2)
return(res)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.