Learn R Programming

ENMeval (version 0.1.0)

eval.plot: Generate Basic Plot for ENMevaluate Output

Description

This function can be used to generate a basic plot of evaluation metrics generated by a call of ENMevaluate.

Usage

eval.plot(results, value = "delta.AICc", variance = NULL, legend = TRUE, 
	legend.position = "topright")

Arguments

results
A data.frame of results from ENMevaluate.
value
Character string of the column of results to use for plotting.
variance
Character string of the column of results to be used for error bars.
legend
logical; If TRUE (default), includes legend in plot with fcs.
legend.position
Character string for the placement of the legend.

Examples

Run this code
data(enmeval_results)

par(mfrow=c(2,2))
eval.plot(enmeval_results@results, legend.position="topright")
eval.plot(enmeval_results@results, "Mean.AUC", )
eval.plot(enmeval_results@results, "Mean.AUC.DIFF", variance="Var.AUC.DIFF")
eval.plot(enmeval_results@results, "Mean.ORmin")

Run the code above in your browser using DataLab