From 866afbf54f438000c07071e27583a060dea74634 Mon Sep 17 00:00:00 2001 From: Kia Teymourian Date: Wed, 16 Jan 2019 16:56:39 -0500 Subject: [PATCH] minor change --- Module-3-Example-1.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module-3-Example-1.R b/Module-3-Example-1.R index b586389..a9c4a95 100644 --- a/Module-3-Example-1.R +++ b/Module-3-Example-1.R @@ -15,7 +15,7 @@ plot(bodymass, height, pch = 16, cex = 1.3, col = "blue", main = "HEIGHT PLOTTED # Correlation cor(bodymass, height) -cor(height, bodymass,) +cor(height, bodymass) # A simple linear regression m<-lm(height ~ bodymass)