Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 2.39 KB

README.md

File metadata and controls

67 lines (51 loc) · 2.39 KB

DataScienceApps

Binder

Interactive web-based learning applications for data science courses. The apps illustrate fundamental statistics concepts through dynamic visualizations for undergraduate coursework at UC Santa Barbara.

Be sure to install the following R packages shinydashboard, shinydashboardPlus, Stat2Data


install.packages('shiny')
install.packages('shinydashboard')
install.packages('shinydashboardPlus')
install.packages('Stat2Data')

Confidence Intervals App

Source code: here Confidence Intervals App

Run:


library(shiny)
runGitHub("DataScienceApps", "javzapata", subdir = "Confidence Intervals//")

Hypothesis Testing App

Source code: here Hypothesis Testing App

Run:


library(shiny)
runGitHub("DataScienceApps", "javzapata", subdir = "Hypothesis Testing//")

Law of Large Numbers App

Source code: here Law of Large Numbers App

Run:


library(shiny)
runGitHub("DataScienceApps", "javzapata", subdir = "LLN//")

Real Life Gaussian Data

Source code: here Real Life Gaussian Data

Run:


library(shiny)
runGitHub("DataScienceApps", "javzapata", subdir = "Real Life Gaussian Data//")

Regression App

Source code: here Regression App

Run:


library(shiny)
runGitHub("DataScienceApps", "javzapata", subdir = "Regression//")