Skip to content

Instantly share code, notes, and snippets.

@jknowles
Created January 8, 2013 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jknowles/4484910 to your computer and use it in GitHub Desktop.
Save jknowles/4484910 to your computer and use it in GitHub Desktop.
Demonstrating bi-variate correlations using simulation.
# Script to demonstrate distributions
library(eeptools)
library(shiny)
library(ggplot2)
rnormcor <- function(x,rho) rnorm(1,rho*x,sqrt(1-rho^2))
shinyServer(function(input,output){
output$distPlot<-reactivePlot(function(){
a<-rnorm(input$obs)
b<-sapply(a,rnormcor,rho=input$rho)
p<-qplot(a,b,alpha=0.85)+geom_smooth(method="lm",se=FALSE,size=1.1)+theme_dpi()
p<-p+labs(x="",y="",title="Demonstrating Correlations")
p<-p+geom_text(aes(x=-2.5,y=3,label=paste("Corr. =",input$rho,sep=" ")),size=8)
print(p)
})
})
# Script to demonstrate distributions
library(eeptools)
library(shiny)
library(ggplot2)
shinyUI(pageWithSidebar(
# Title
headerPanel("Simulating Data with Correlation"),
sidebarPanel(
sliderInput("obs","Number of observations:",
min=200,max=5000,value=500,step=250),
sliderInput("rho","Correlation Coefficient",
min=-1,max=1,value=0,step=0.1)
),
# GGPLOT
mainPanel(
plotOutput("distPlot")
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment