I have a plot (sample code pasted below) that I am trying to add by own labels for the series information. Instead of plotting \"p1s1\" \"p1s2\" \"p3s4\", I would like \"tr
maybe you can relabel your factor?
growth_series$series_id <- factor(
growth_series$series_id,
labels=c('treatment 1', 't2', 't3'))
Or if you are still looking for scale_something, it should be scale_colour_hue()
... + scale_colour_hue('my legend',
breaks = levels(growth_series$series_id),
labels=c('t1', 't2', 't3'))