Skip to content

jinseob2kim/jsmodule

Folders and files

NameName
Last commit message
Last commit date

Latest commit

94fe16e · Mar 18, 2025
Sep 22, 2023
Mar 18, 2025
Dec 11, 2024
May 6, 2024
Mar 10, 2023
Feb 13, 2025
Mar 22, 2024
Dec 12, 2024
May 7, 2024
Mar 6, 2023
Jan 7, 2022
Feb 14, 2024
Mar 18, 2025
Jan 9, 2020
Feb 13, 2025
Mar 18, 2025
Aug 8, 2023
Aug 8, 2023
May 6, 2024
Jan 17, 2019
May 11, 2019
Feb 2, 2019

Repository files navigation

jsmodule

AppVeyor build status Github action CRAN_Status_Badge CRAN_Download_Badge codecov GitHub issues GitHub stars GitHub license

RStudio Addins and Shiny Modules for Medical Research

Install

install.packages("jsmodule")
library(jsmodule)

## From github: latest version
remotes::install_github('jinseob2kim/jsmodule')

RStudio Addins

Basic statistics

Use jsBasicGadget(data) or Click Basic statistics Addin with the dragged name of data.

jsBasicGadget(mtcars)

Basic statistics with external data

Use jsBasicExtAddin() or Click Basic statistics with external data Addin without any drag

jsBasicExtAddin()

Repeated measure analysis

Use jsRepeatedGadget(data) or Click Repeated measure analysis Addin with the dragged name of data.

jsRepeatedGadget(mtcars)

Repeated measure analysis with external data

Use jsRepeatedExtAddin() or Click Repeated measure analysis with external data Addin without any drag

jsRepeatedExtAddin()

Survey data analysis

Use jsSurveyGadget(data) or Click Survey data analysis Addin with the dragged name of data.

library(survey)
data(api)
jsSurveyGadget(apistrat)

Survey data analysis with external data

Use jsSurveyExtAddin() or Click Survey data analysis with external data Addin without any drag

jsSurveyExtAddin()

Propensity score analysis

Use jsPropensityGadget(data) or Click Propensity score analysis Addin with the dragged name of data.

jsPropensityGadget(mtcars)

Propensity score analysis with external data

Use jsPropensityExtAddin() or Click Propensity score analysis with external data Addin without any drag

jsPropensityExtAddin()

Web applications