I have a plot with multiple lines, each labelled separately. I'd like to put a legend in the plot so that individual lines can be identified. The default ordering of labels and markers looks something like:
marker : label
marker : label
marker : label
... and so on.
For various aesthetic reasons I'd like the number of columns in my legend to equal the number of lines (and labels), which I change using the ncol
option. So, currently, my legend looks like:
marker : label marker : label marker : label
It would be much clearer for me, however, to have the labels above the markers in this arrangement. What I would like is something like:
label label label
marker marker marker
I'm wondering if there is a "quick fix" way to achieve such a legend.