Exam1.2 | R Documentation |
Exam1.2 is used to see types of model effects by plotting regression data
Muhammad Yaseen (myaseen208@gmail.com)
Adeela Munawar (adeela.uaf@gmail.com)
Stroup, W. W. (2012). Generalized Linear Mixed Models: Modern Concepts, Methods and Applications. CRC Press.
Table1.2
#-------------------------------------------------------------
## Plot of multi-batch regression data discussed in Article 1.3
#-------------------------------------------------------------
data(Table1.1)
Table1.2$Batch <- factor(x = Table1.2$Batch)
library(ggplot2)
Plot <-
ggplot(data = Table1.2, mapping = aes(y = Y, x = X, colour = Batch, shape = Batch)) +
geom_point() +
geom_smooth(method = "lm", fill = NA) +
labs(title = "Plot of Multi Batch Regression data") +
theme_bw()
Plot
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.