MonolixSuite in R
Breadcrumbs

resetPlotPreferences

Reset plot preferences to go back to default preferences

Reset plot preferences to go back to default preferences

Usage

R
resetPlotPreferences()

See also

getPlotPreferences setPlotPreferences

Examples

R
if (FALSE) {
  getPlotPreferences()$obs[c("color", "legend")]
  update = list(obs = list(color = "green", legend = "Observation"))
  setPlotPreferences(update = update)
  getPlotPreferences()$obs[c("color", "legend")]
  resetPlotPreferences()
  getPlotPreferences()$obs[c("color", "legend")]
}