Learn R Programming

dominanceanalysis (version 2.0.0)

plot.dominanceAnalysis: Plot for a dominanceAnalysis object

Description

Plot for a dominanceAnalysis object

Usage

# S3 method for dominanceAnalysis
plot(
  x,
  which.graph = c("general", "complete", "complete_no_facet", "conditional"),
  fit.function = NULL,
  complete_flipped_axis = TRUE,
  ...
)

Arguments

which.graph

which graph to plot

fit.function

name of the fit indices to retrieve. If NULL, first index will be used

complete_flipped_axis

For complete and complete_no_facet plot, set the R2 on X axis to allow easier visualization

...

unused

Value

a ggplot object

Examples

Run this code
# NOT RUN {
data(longley)
lm.1<-lm(Employed~.,longley)
da<-dominanceAnalysis(lm.1)
# By default, plot() shows the general dominance plot
plot(da)
# Parameter which.graph defines which type of dominance to plot
plot(da,which.graph='conditional')
plot(da,which.graph='complete')
# Parameter complete_flipped_axis allows to flip axis on complete plot, to better visualization
plot(da,which.graph='complete', complete_flipped_axis=TRUE)
plot(da,which.graph='complete', complete_flipped_axis=FALSE)
# }

Run the code above in your browser using DataLab