У меня есть мои данные и график в базе R здесь:
library(TH.data)
data("GlaucomaM")
names(GlaucomaM)
library(mboost)
glau_boost <- gamboost(Class ~., data = GlaucomaM, family = Binomial())
# layout(matrix(1:9, ncol = 3))
plot(glau_boost)
Я хотел бы сделать этот график с помощью ggplot. Что мне нужно сделать?