Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Polynomial Regression with Interaction
data(ChickWeight) str(ChickWeight) head(ChickWeight) library(ggplot2) attach(ChickWeight) ggplot(ChickWeight, aes(Time, weight, colour=Diet))+geom_point()+geom_smooth()+ggtitle("Polynomial") Mod=lm(weight~Time+I(Time^2)*Diet) summary(Mod) ggplot(ChickWeight, aes(x=Diet, y=weight, colour=Diet))+geom_boxplot()
run
|
edit
|
history
|
help
0
absolute.R
confidence interval stuff
EulerEx1
3.4.0 / 3.5.2 / 3.5.1 / 3.6.1 / 3.6.5.#
ExDecaiEulerMin28-01-21
Practica1
Ex11-03-21EdsonAmanda
Polynomial Regression
Inter-11-03-21
Gab1B-newton