Skip to content

Instantly share code, notes, and snippets.

@ajstewartlang
Created December 5, 2019 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajstewartlang/54a05b0b751b1d2858bc93d05d48b06d to your computer and use it in GitHub Desktop.
Save ajstewartlang/54a05b0b751b1d2858bc93d05d48b06d to your computer and use it in GitHub Desktop.
MRes_Binder
set.seed(1234)
a <- seq(1:20)
b <- a + runif(20, 0, .25)
my_data <- as.data.frame(c(a, b))
my_model <- lm(a ~ b, data = my_data)
summary(my_model)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment