Created
December 5, 2019 09:48
-
-
Save ajstewartlang/54a05b0b751b1d2858bc93d05d48b06d to your computer and use it in GitHub Desktop.
MRes_Binder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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