Hola,
Si para representar la tabla de frecuencias estás usando barplot, éste
acepta como parámetro de ajuste los límites de los ejes "ylim=c(val_inf,
val_sup)".
##################
barplot(height, width = 1, space = NULL,
names.arg = NULL, legend.text = NULL, beside = FALSE,
horiz = FALSE, density = NULL, angle = 45,
col = NULL, border = par("fg"),
main = NULL, sub = NULL, xlab = NULL, ylab = NULL,
xlim = NULL, *ylim = NULL*, xpd = TRUE, log = "",
axes = TRUE, axisnames = TRUE,
cex.axis = par("cex.axis"), cex.names =
par("cex.axis"),
inside = TRUE, plot = TRUE, axis.lty = 0, offset = 0,
add = FALSE, args.legend = NULL, ...)
Y como código reproducible, un ejemplo de la propia función barplot()
mp <- barplot(VADeaths) # default
tot <- colMeans(VADeaths)
text(mp, tot + 3, format(tot), xpd = TRUE, col = "blue")
barplot(VADeaths, beside = TRUE,
col = c("lightblue", "mistyrose",
"lightcyan",
"lavender", "cornsilk"),
legend = rownames(VADeaths), *ylim = c(0, 100)*)
title(main = "Death Rates in Virginia", font.main = 4)
##################
La ayuda se simplifica si a la hora de plantear las dudas se adjunta
código/datos reproducibles.
Saludos,
Carlos.
www.qualityexcellnece.es
http://www.datanalytics.com/blog/
2010/12/10 Alberto Nunez <alberto_nunez1@yahoo.es>
> Buenas,
>
> Quisiera saber si alguien me puede decir cómo aumentar la escala de los
> ejes al
> representar una tabla de frecuencias. Al representar las frecuencias de una
> tabla, el valor máximo del eje es inferior al valor máximo de uno de mis
> valores.
>
> Gracias
> Alberto
>
>
>
> [[alternative HTML version deleted]]
>
>
> _______________________________________________
> R-help-es mailing list
> R-help-es@r-project.org
> https://stat.ethz.ch/mailman/listinfo/r-help-es
>
>
[[alternative HTML version deleted]]