Say I'm making a line graph with about ten lines or so, and I want each line to be distinguishable in black and white. Is there a way to "automatically" give each grouping a different line structure (i.e. dashed, dotted, thickness), similar to how you could do the same thing with different colors? It doesn't matter what these are, just something to make them distinguishable.
Edit: I'm looking for something a little better than
aes(linetype=group)
aes(linetype = group)? – joran Nov 19 '12 at 19:18scale_linetype_manual. The default palette of linetypes in ggplot has 13 entries, so it may be possible. – Brian Diggs Nov 19 '12 at 21:29