Skip to contents

Function that returns the MEMC color palette for the the default MEMC model configurations

Usage

colorMEMCPalette(name = NULL)

Arguments

name

input vector containing the model names to return the color codes for, default will return colors for all the model configurations,

Value

vector containing color hex codes for the different model configurations

Examples

if (FALSE) {
out <- solve_model(model = MEND_model, time = 0:100)
ggplot(data = out, aes(time, value)) +
geom_line(color = name) +
scale_color_manual(values = colorMEMCPalette("MEND")) +
facet_wrap("variable")
}