Does anybody know of a way of generating a boxplot in R with a line (or another symbol) in the value corresponding to the mean?
Thank you!
|
feedback
|
for a horizontal line (use v instead of h for vertical if you orient your boxplot horizontally), or
for a point. Use the parameter Note that these are called after you have drawn the boxplot. If you are using the formula interface, you would have to construct the vector of means. For example, taking the first example from
If your data contains missing values, you might want to replace the last argument of the | |||||
feedback
|
|
Check chart.Boxplot from package
| ||||
|
feedback
|
|
With
| |||
|
feedback
|
|
Based on the answers by @James and @Jyotirmoy Bhattacharya I came up with this solution:
(See this post for more details) If you would like to add points to horizontal box plots, please see this post. | |||
|
feedback
|