> -----Original Message----- > First, i use the BOXPLOT() and SUBSET() to produce the box > plot of all the 5 funds performance individually: > ... > *So the FIRST QUESTION is how to eliminate the other 5 > strategies on the Y-aix? * either use boxplot(NetReturn~factor(Strategy),data=filteredFunds,horizontal=TRUE) # factor() will drop levels from an existing factor with surplus levels
or use droplevels on your subset to remove the extra levels (assuming, of course, that you won't need them again). ******************************************************************* This email and any attachments are confidential. Any use...{{dropped:8}} ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.