I need to reduce the width of the bars in the below multiple barplot:
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.