Boxplot - how to remove values labeling outliers

When I make a box plot using RCMDR I get values alongside the outliers. I want to remove them. I not very good at this - simple is best.

I do not have Rcmdr installed but looking at a YouTube video https://www.youtube.com/watch?v=oAjC_8PLZxI it looks like the basic command is:

Boxplot( v1 ~ v2,  data = mydata, id.method  = "y")

You might want to try changing  the id.method to "n" . Type this into the script window:

Boxplot( v1 ~ v2, data = mydata, id.method = "n")


Alternatively since Boxplot looks like a wrapper for boxplot  you might 

boxplot( v1 ~ v2, data = mydata

Note *boxplot* not *Boxplot* 


Otherwise we need an Rcmdr expert.






Can you copy the code that is output in the script window and post it here?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.