This repository contains a shiny application that allows performing a person-fit analysis of results from exams, categorized as correct responses (codified as 1s) and incorrect ones (codified as 0s).
The app requires R and the following packages:
These packages can be installed using the following function call:
install.packages(c("shiny", "shinythemes", "PerFit", "plotly", "ltm", "DT", "mokken", "pander", "mnormt", "psych"),
dependencies = TRUE)
and then the app can be directly invoked using the command:
shiny::runGitHub("PerFitShiny", "albamrt")
The app will automatically load these packages. If you would like to interactively run the code in your own R session, then you will need first to load the packages using the commands:
library("shiny")
library("shinythemes")
library("PerFit")
library("plotly")
library("ltm")
library("DT")
library("mokken")
library("pander")
library("mnormt")
library("psych")