-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b94478c
commit 630ec09
Showing
6 changed files
with
1,324 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Package: IRTShiny | ||
Type: Package | ||
Title: Item Responce Theory via Shiny | ||
Version: 1.0 | ||
Date: 2014-11-24 | ||
Author: William Kyle Hamilton <kyle.hamilton@gmail.com>, Atsushi Mizumoto | ||
<atsushi@mizumot.com> | ||
Maintainer: William Kyle Hamilton <kyle.hamilton@gmail.com> | ||
Description: Interactive shiny application for running Item Response Theory | ||
analysis. | ||
License: GPL-3 | ||
Imports: | ||
shiny, | ||
shinyAce, | ||
beeswarm, | ||
CTT, | ||
ltm, | ||
parallel, | ||
LazyData: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
export(startIRT) | ||
|
||
import(shiny) | ||
import(shinyAce) | ||
import(beeswarm) | ||
import(parallel) | ||
import(CTT) | ||
import(ltm) | ||
importFrom(psych,describe) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#' Start IRTShiny | ||
#' @title This function will start IRTShiny | ||
#' @return Nothing | ||
#' @description An interactive Shiny application for running a IRT analysis. | ||
#' @details This starts the Shiny application IRT. | ||
#' @keywords IRT | ||
#' @examples | ||
#' \dontrun{ | ||
#' library(shiny) | ||
#' startIRT() | ||
#' } | ||
#' @export | ||
|
||
startIRT <- function() { | ||
|
||
shiny::runApp(appDir = system.file("IRT", package="IRTShiny")) | ||
|
||
} |
Oops, something went wrong.