Chapter 7 Null Models
Purpose: - Assess performance of niche models using null models
Authors: Tyler Radtke and Sebastian Fernandez
7.7 F) Plot Null Model Results
# Generate histogram plots for AUC and OR.10p statistics
spec.null <- evalplot.nulls(
spec.mod.null,
stats = c("or.10p", "auc.val"),
plot.type = "histogram"
)
# Display plot in R console
plot(spec.null)
# Save plot to PNG
ggsave(
filename = "Galax_urceolata_null_histogram.png",
plot = spec.null,
path = "data/05_ENMs/",
height = 12,
width = 13
)