2
Come impostare i limiti per gli assi nei grafici ggplot2 R?
Tracciato quanto segue: library(ggplot2) carrots <- data.frame(length = rnorm(500000, 10000, 10000)) cukes <- data.frame(length = rnorm(50000, 10000, 20000)) carrots$veg <- 'carrot' cukes$veg <- 'cuke' vegLengths <- rbind(carrots, cukes) ggplot(vegLengths, aes(length, fill = veg)) + geom_density(alpha = 0.2) Ora dico io voglio solo tracciare la regione tra x=-5000a 5000, invece di …