项目作者: drizopoulos

项目描述 :
Shiny App for Repeated Measurements Course
高级语言: HTML
项目地址: git://github.com/drizopoulos/Repeated_Measurements.git
创建时间: 2015-09-20T13:38:20Z
项目社区:https://github.com/drizopoulos/Repeated_Measurements

开源协议:

下载


shiny app for Repeated Measurements Course

This repository contains a shiny application that replicates
all analyses presented in the course
Statistical Analysis of Repeated Measurements Data, including also some additional
illustrations. The app requires R
(version >= 4.3.2) and the following packages:

These packages can be installed using the following function call:

  1. install.packages(c("shiny", "nlme", "lattice", "lme4", "GLMMadaptive", "MASS",
  2. "geepack", "corrplot"), dependencies = TRUE)

and then the app can be directly invoked using the command:

  1. shiny::runGitHub("Repeated_Measurements", "drizopoulos")

The app will automatically load these packages and also load the data sets used in the
course. 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:

  1. library("shiny")
  2. library("lattice")
  3. library("nlme")
  4. library("lme4")
  5. library("geepack")
  6. library("GLMMadaptive")
  7. library("MASS")
  8. library("splines")
  9. library("corrplot")

and also load the data sets from GitHub
using the commands:

  1. con <- url("https://raw.github.com/drizopoulos/Repeated_Measurements/master/Data.RData")
  2. load(con)
  3. close(con)