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!
|
|
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 |
||||
|
Check chart.Boxplot from package
|
||||
|
|
|
With
|
|||
|
|
|
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. |
|||
|
|
|
I also think chart.Boxplot is the best option, it gives you the position of the mean but if you have a matrix with returns all you need is one line of code to get all the boxplots in one graph. Here is a small ETF portfolio example.
Return Matrix
Box Plot of Return Matrix
You can try changing the mean.symbol, and remove or change the median.symbol. Hope it helped. :) |
||||
|
|