R/rasch_jml_person_parameters_summary.R

Defines functions rasch_jml_person_parameters_summary

## File Name: rasch_jml_person_parameters_summary.R
## File Version: 0.04

rasch_jml_person_parameters_summary <- function(x)
{
    res <- data.frame(N=length(x), mean=mean(x),
                        median=stats::quantile(x, probs=.5),
                        sd=stats::sd(x), min=min(x), max=max(x)
                        )
    return(res)
}

Try the sirt package in your browser

Any scripts or data that you put into this service are public.

sirt documentation built on Aug. 11, 2023, 5:07 p.m.