I've got 40 subjects in my dataset, 4 in each group and I want to create a plot that shows a line for each subject replicate (3 replicates); colouring them by subject, shaping by replicate. The problem I have is that the colours are so similar in each facet (group) that I can't really tell them apart.
My main body of code for the plot is:
ggplot(T_S, aes(x=as.numeric(Day), y=variable, colour=as.factor(Subj))) +
geom_point(aes(shape=as.factor(Rep))) +
geom_line(aes(linetype=as.factor(Rep))) +
facet_wrap(.~Group,ncol=3) +
theme_bw() +
theme(legend.position="none")
And an example of what I mean by not being able to distinguish between colours is below using the viridis package. Is there a way to get the colours to alternate between the dark purple and yellow within each facet?
[Example with the Viridis Package][1]
Other things I've tried:
scale_color_brewer(palette="Dark2")
scale_fill_manual(values = wes_palette("GrandBudapest1", n = 38))
scale_color_gradientn(colours = rainbow(40))
I also looked into the PolyChrome and randomcoloR packages, but can't see how they work with ggplot2. Any other suggestions also welcome! Thanks in advance for your help. [1]: https://i.stack.imgur.com/2iHXY.png
It's difficult for anyone to give you a tested, working solution on Stack Overflow if you don't include a sample of your data in the question. However, after a bit of reverse-engineering I have created what should be a reasonable approximation of your data structure:
And we can see that with your plotting code, we get similar results:
The reason for this is that your subject numbers are consecutive and correlate completely with the group. For the purposes of plotting, we want just four colors - one for each subject in each panel. The easiest way to achieve this is to renumber the subjects to 1:4 within each panel.
So now the exact same plotting code gives us: