2
I’m filling a bar chart, the differences between the bars are 0.1 how do I move the axis so that these differences appear ?
fvcmt = c(95.2, 95.3, 95.4, 95.1, 95.1, 94.8, 95.1)
fevmt = c(91.9, 92.1, 92.3, 91,4, 91.8, 90.1, 91.8)
a =c("18 to 23", "24 to 29", "30 to 35", "36 to 41", "42 to 47", "48 to 53",
"54 to 59")
barplot(fvcmt, width = 50, ylim = c(0, 100),
ylab = c("FVC Pereira et al/ FVC Moldel"),
main = 'Males', axes =F, names.arg = a, xlab = "Ages")
axis(2, at = seq(0,150, by = .5))
Thanks for the help
– Mariane Campos