Skip to content

barplot: space makes beside=F (PR#7668)

1 message · Uwe Ligges

#
o.medek@sh.cvut.cz wrote:

            
This is not a bug. See ?barplot which tells us:

    space: [...] If height is a matrix and beside is TRUE,
           space may be specified by two numbers, where the
           first is the space between bars in the same group,
           and the second the space between the groups. [...]

and it works as described:

    barplot(matrix(1:10, 2), beside = TRUE, space = c(1, 7))


Uwe Ligges