plot.autoGAM_frame.Rd
Plot method for an object of class autoGAM_frame
.
# S3 method for autoGAM_frame plot(x, type = "final", ...)
x | An object of class |
---|---|
type | The type of the plot to be created. Valid inputs are |
... | Other plot arguments (Not being used for objects of class |
Desired plots that were requested by the type
argument.
Shahin Roshani
if (FALSE) { my_mtcars <- mtcars %>% mutate_at('vs',as.factor) carsGAM <- autoGAM_frame(mpg~disp+drat+vs,data=my_mtcars) %>% backward_select %>% autoGAM_fit plot(carsGAM,type='forms') plot(carsGAM) }