plotVarUsage {mogavs} | R Documentation |
Visualizes how models on the efficient frontier use different variables. May be useful for finding out which variables seem to be most useful for explanation.
plotVarUsage(mogavs, method = c("hist", "plot", "table"))
mogavs |
A model of the class mogavs. |
method |
The chosen method for visualizing variable usage, |
In the case of method="hist"
or method="plot"
doesn't return anything, if method="table"
returns a table.
Tommi Pajala <tommi.pajala@aalto.fi>
data(sampleData)
mod<-mogavs(y~.,data=sampleData,maxGenerations=20)
plotVarUsage(mod,"table")
plotVarUsage(mod,"hist")
plotVarUsage(mod,"plot")