I am trying to match the aesthetics of ggiNEXT
objects in a series of manually generated ggplot2
figures. Sample figure is below, where colors of lines and 95% confidence intervals are those chosen by default by function ggiNEXT
(code taken directly from function help):
library(iNEXT)
library(ggplot2)
z <- iNEXT(spider, q=c(0,1,2), datatype="abundance")
ggiNEXT(z, facet.var="Assemblage", color.var="Order.q")
I want to determine what colors are used by default for lines and 95% confidence intervals - how can I figure this out?