drawing

Overview

As an advanced approach to computerized adaptive testing (CAT), shadow testing (van der Linden, 2005) dynamically assembles entire shadow tests as a part of selecting items throughout the testing process. Selecting items from shadow tests guarantees the compliance of all content constraints defined by the blueprint. RSCAT is an R package for the shadow-test approach to CAT. The objective of RSCAT is twofold: 1) Enhancing the effectiveness of shadow-test CAT simulation; 2) Contributing to the academic and scientific community for CAT research. RSCAT is currently designed for dichotomous items based on the three-parameter logistic (3PL) model. CAT algorithms are implemented in Java and the shadow-test MIP is modeled in FICO Xpress-Mosel. R functions and classes are provided as API wrappers to configure and run CAT simulations in the R environment.

Install & Setup

Please note that the RSCAT package depends on Java and the R library “rJava”. The following instructions have been tested on multiple Windows and Mac OS machines. It is not guaranteed that these instructions will work on every machine. You may experience some issues of installing and running Java and rJava, especially on Mac OS. These issues are out of scope of these instructions and the best place to find answers is Dr. Google. Some useful information can be found at (https://zhiyzuo.github.io/installation-rJava/).

For Windows

  1. Install Java SE Runtime Environment 8 64-bit (https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html). Make sure Java and R are both of 64bit architecture.
  2. Install FICO Xpress with the community license (https://content.fico.com/xpress-optimization-community-license?utm_source=FICO-Community&utm_medium=optimization-homepage)
  3. Install the RSCAT package, you can choose one of the following two approaches:
  1. RSCAT depends on the following third party Java libraries, which can be downloaded securely from the Maven Repository through HTTPS:

    Copy all the extracted “jar” files to the “/java” folder under the RSCAT package installation directory. You can use .libPaths() to get the path to installed libraries. For example, if RSCAT is installed at “C:/Users/urname/Documents/R/win-library/3.4”, then copy the extracted “jar” files to “C:/Users/urname/Documents/R/win-library/3.4/RSCAT/java”.

  2. Copy “xprm.jar” to the “/java” folder under the RSCAT package installation directory. “xprm.jar” can be found in the Xpress installation directory, e.g., “C:/xpressmp/lib/xprm.jar”.

  3. In the R environment, load RSCAT using library(RSCAT).

For Mac OS

  1. Install Java SE Development Kit 8 64-bit (https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) Make sure Java and R are both of 64bit architecture.
  2. In Terminal, run sudo R CMD javareconf. Make sure there are no errors or warnings. If there are, address them and run it again.
  3. In Terminal, run sudo ln -sf $(/usr/libexec/java_home)/lib/server/libjvm.dylib /usr/local/lib
  4. Install FICO Xpress with the community license (https://content.fico.com/xpress-optimization-community-license?utm_source=FICO-Community&utm_medium=optimization-homepage)
  5. Install the RSCAT package, you can choose one of the following two approaches:
  1. In Terminal, run sudo ln -s /Applications/FICO\ Xpress/xpressmp/lib/*.dylib /usr/local/lib.
  2. Refer to the step 4 in the instruction “For Windows” to download and copy jar dependencies.
  3. Copy “xprm.jar” to the “/java” folder under the RSCAT package installation directory. “xprm.jar” can be found in the Xpress installation directory, e.g., “/Applications/FICO Xpress/xpressmp/lib/xprm.jar”.
  4. In the R environment, load RSCAT using library(RSCAT).

Run Shiny App

Run RSCAT Shiny App in a Linux Docker Container

Refer to the instruction in the RSCAT GitHub repository (https://github.com/act-org/RSCAT).

For Windows

In the R environment, run library(RSCAT) to load and attach the package. In the R environment, run launchApp() to start the Shiny app for CAT configuration and simulation.

For Mac OS

Additional settings for environment variables are required for R. Suppose FICO Xpress is installed at /Applications/FICO Xpress/xpressmp. In the R environment, run the following code in R every time before loading/attaching RSCAT:

Sys.setenv(JAVA_LIBRARY_PATH = '/Applications/FICO Xpress/xpressmp/lib')
Sys.setenv(XPRESS='/Applications/FICO Xpress/xpressmp/bin')
Sys.setenv(MOSEL_DSO='/Applications/FICO Xpress/xpressmp/dso')

If RSCAT was loaded previously, run .rs.restartR(). If not, run library(RSCAT) to load and attach the package. In the R environment, run launchApp() to start the Shiny app for CAT configuration and simulation.

Item & Passage Pool Definition

The item and passage identifiers should be specified in the column “Item ID” and “Passage ID”, respectively. The item IRT parameters should be specified in the columns “A-Param”, “B-Param”, and “C-Param” in the item pool.

Content Specification Constraint Definition

The syntax to define constraints is provided in “/extdata/constraint_syntax.xlsx”.

Example Data

Example item pools, passage pools, and constraint sets CSV files are in “/extdata”.Two test blueprints can be used as follows:

  1. Blueprint #1
  1. Blueprint #2

Choose MIP Solvers

RSCAT works with MIP solvers that support the nl format, e.g., FICO Xpress, CPLEX, lpsolve, and CBC. The Mosel MIP model uses the “nlsolv” module to support external solvers. RSCAT uses Xpress as the default solver. To switch to another solver, first detach the RSCAT package and restart the R session. Then open the “RSCAT” archive jar file installed under “/java” and edit the Mosel script “/org/act/mosel/shadow_test.mos”. In the Mosel script, the module “mmxprs” is used for Xpress while “nlsolv” is used for other solvers. When “nlsolv” is used, the user needs to set the parameter “nl_solverpath” with the solver installation directory. Additional information for configuring a solver can be obtained from https://www.fico.com/fico-xpress-optimization/docs/dms2018-02/mosel/mosel_solvers/dhtml/nlsolv.html. After editing, save the Mosel file in the JAR archive and reload the package.

Reference

van der Linden, W. J. (2005). Linear Models for Optimal Test Design. New York, NY: Springer.