I have a List() in which each element is a vector of values. I created a vector of colors with the same length of the list, but I would like that one of the boxplot have a texture rather a single color. I already saw this question, but it doesn't address my concern, I was hoping to find something like col="texture" instead of col="white", in order to combine it with the colors of the other boxplots
For example like this:
boxplot(My_list,col=c("white","red","blue","green","grey","pink","orange","lightblue","darkgreen","purple","yellow","brown","darkgrey"),ylim=c(-10,110))
How can I do it?