Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

report.Rmd

Blame
  • report.Rmd 464 B
    title: "Linear Regression Report - Generated in the Shiny App, authored by Bruna Wundervald."

    Here is my regression model:

    m1 <- fc()$m
    summary(m1)

    Here is the ANOVA generated by this model:

    anova(m1)

    And here are the plots to check for departures from homocedasticity and normality of the model:

    par(mfrow=c(2,2)); plot(m1); layout(1)