Skip to content

Commit

Permalink
Files for CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehamilton committed Nov 25, 2014
1 parent b94478c commit 630ec09
Show file tree
Hide file tree
Showing 6 changed files with 1,324 additions and 0 deletions.
19 changes: 19 additions & 0 deletions DESCRIPTION
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
10 changes: 10 additions & 0 deletions NAMESPACE
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)
18 changes: 18 additions & 0 deletions R/IRTShiny.R
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"))

}
Loading

0 comments on commit 630ec09

Please sign in to comment.