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

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -