R/plot.ppar.r

Defines functions plot.ppar

Documented in plot.ppar

plot.ppar <- function(x, xlab = "Person Raw Scores", ylab = "Person Parameters (Theta)", main = NULL, ...){
### function (x, y = NULL, type = "p", xlim = NULL, ylim = NULL,
###     log = "", main = NULL, sub = NULL,
###     xlab = "Person Raw Scores",
###     ylab = "Person Parameters (Theta)",
###     ann = par("ann"), axes = TRUE, frame.plot = axes, panel.first = NULL,
###     panel.last = NULL, asp = NA, ...)
# plot of the person raw scores against the person parameters
# x...object of class "ppar" (resulting from person.parameter.eRm)

  pl <- x$pred.list                              #list with spline interpolations

  if(is.null(pl)) stop("Spline interpolation required in person.parameter.eRm!")

  X <- x$X
  if(length(x$pers.ex) > 0L){
    X <- X[-x$pers.ex, ]
    #gmemb <- x$gmemb[-x$pers.ex]
  }
  gmemb <- x$gmemb
  X.list <- split(as.data.frame(X), as.factor(gmemb))

  if(length(pl) > 1L){
    for(i in seq_along(pl)) main.text <- paste("Person Parameter Plot of Group",i)
  } else {
    main.text <- "Plot of the Person Parameters"
  }

  if(!is.null(main)) main.text <- main

  for(i in seq_along(pl)){
    # plotting without duplicates
    plot(
      unique(cbind( rowSums(X.list[[i]], na.rm = TRUE),
                    x$thetapar[[i]] )),
      xlim = range(pl[[i]]$x),
      ylim = range(pl[[i]]$y),
      xlab = xlab,
      ylab = ylab,
      main = main.text,
      ...)
    lines(pl[[i]]$x, pl[[i]]$y)
  }

}

Try the eRm package in your browser

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

eRm documentation built on Sept. 28, 2023, 9:07 a.m.