Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reduce width of bars in multiple barplot R

I need to reduce the width of the bars in the below multiple barplot:

enter image description here

I tried to use the space option as per here Change width of bars in barchart (R) but it seems that with multiple barplot (i.e. in my case 4 bars per each variable) the function space does not work.

Here's some fake data that reproduce the plot:

mat_example = matrix(rnorm(40), 4, 10)
barplot(mat_example[,c(1:10)], beside = TRUE)

Thank you for any suggestions.

like image 966
aaaaa Avatar asked Jan 29 '23 04:01

aaaaa


1 Answers

In help(barplot) there is this paragraph:

space: the amount of space (as a fraction of the average bar width) left before each bar. May be given as a single number or one number per bar. 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. If not given explicitly, it defaults to ‘c(0,1)’ if ‘height’ is a matrix and ‘beside’ is ‘TRUE’, and to 0.2 otherwise.

So in your case this should work:

barplot(table, beside=TRUE, space=c(0, 2))

With your example:

mat_example <- matrix(rnorm(40), 4, 10)
barplot(mat_example[,c(1:10)], beside=TRUE, space=c(0, 5))

enter image description here

like image 59
Karolis Koncevičius Avatar answered Feb 05 '23 04:02

Karolis Koncevičius