All Projects → drizopoulos → Repeated_Measurements

drizopoulos / Repeated_Measurements

Licence: other
Shiny App for Repeated Measurements Course

Programming Languages

HTML
75241 projects
r
7636 projects

Projects that are alternatives of or similar to Repeated Measurements

lgpr
R-package for interpretable nonparametric modeling of longitudinal data using additive Gaussian processes. Contains functionality for inferring covariate effects and assessing covariate relevances. Various models can be specified using a convenient formula syntax.
Stars: ✭ 22 (-68.12%)
Mutual labels:  longitudinal-data
polished example apps
Example Apps for Polished
Stars: ✭ 24 (-65.22%)
Mutual labels:  shiny-apps
MtreeRing
A tool for measuring tree-ring width
Stars: ✭ 19 (-72.46%)
Mutual labels:  shiny-apps
powerlmm
powerlmm R package for power calculations for two- and three-level longitudinal multilevel/linear mixed models.
Stars: ✭ 86 (+24.64%)
Mutual labels:  longitudinal-data
shinydnd
Creating drag and drop elements in Shiny
Stars: ✭ 89 (+28.99%)
Mutual labels:  shiny-apps
antaresViz
ANTARES Visualizations
Stars: ✭ 19 (-72.46%)
Mutual labels:  shiny-apps
workshops-setup cloud analytics machine
Tips and Tricks to setup a cloud machine for Analytics and Data Science with R, RStudio and Shiny Servers, Python and JupyterLab
Stars: ✭ 12 (-82.61%)
Mutual labels:  shiny-apps
financial-asset-comparison-tool
R Shiny app to compare the relative performance of cryptos and equities.
Stars: ✭ 97 (+40.58%)
Mutual labels:  shiny-apps
joineRML
R package for fitting joint models to time-to-event data and multivariate longitudinal data
Stars: ✭ 24 (-65.22%)
Mutual labels:  longitudinal-data
PlotTwist
PlotTwist - a web app for plotting and annotating time-series data
Stars: ✭ 21 (-69.57%)
Mutual labels:  shiny-apps
xplorerr
Shiny apps for interactive data analysis, visualization and modeling.
Stars: ✭ 33 (-52.17%)
Mutual labels:  shiny-apps
shiny crud
Example Shiny apps implementing CRUD database functionality
Stars: ✭ 88 (+27.54%)
Mutual labels:  shiny-apps
wopr
An R package and Shiny application to provide API access to the WorldPop Open Population Repository (WOPR)
Stars: ✭ 28 (-59.42%)
Mutual labels:  shiny-apps
rsiena
An R package for Simulation Investigation for Empirical Network Analysis
Stars: ✭ 56 (-18.84%)
Mutual labels:  longitudinal-data
shinyComponent
Single-File Components powered app
Stars: ✭ 15 (-78.26%)
Mutual labels:  shiny-apps
imgsvd
Shiny App for Image Compression via SVD
Stars: ✭ 22 (-68.12%)
Mutual labels:  shiny-apps
conan-danmu
《名侦探柯南》B站弹幕浏览器
Stars: ✭ 37 (-46.38%)
Mutual labels:  shiny-apps
GREIN
GREIN : GEO RNA-seq Experiments Interactive Navigator
Stars: ✭ 40 (-42.03%)
Mutual labels:  shiny-apps
price-optimization-shiny
Shiny app for Price Optimization using prophet and lme4 libraries for R.
Stars: ✭ 28 (-59.42%)
Mutual labels:  shiny-apps
PlotsOfData
Shiny App for comparison of samples
Stars: ✭ 47 (-31.88%)
Mutual labels:  shiny-apps

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.1.2) and the following packages:

These packages can be installed using the following function call:

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

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

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:

library("shiny")
library("lattice")
library("nlme")
library("lme4")
library("geepack")
library("GLMMadaptive")
library("MASS")
library("splines")
library("corrplot")

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

con <- url("https://raw.github.com/drizopoulos/Repeated_Measurements/master/Data.RData")
load(con)
close(con)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].