r - Vertical boxplot using chart.Boxplot -
i'm not able horizontal=false
in chart.boxplot()
produce vertical plot:
require(performanceanalytics) z <- runif(1:100) chart.boxplot(z) chart.boxplot(z, horizontal=false)
the 2 plots same.
this performanceanalytics version 1.1.0 , r version 3.0.0.
it small bug. should contact maintainer. should replace line ( in 2 places in code)
boxplot(r[, column.order], horizontal = true,..
by
boxplot(r[, column.order], horizontal = horizontal,...
Comments
Post a Comment