Skip to content
Prev 303036 / 398503 Next

help error histograma

Now that John has put your data into a readable format, there are a number of issues with your histogram that don't make much sense. You have enlarged the text of the labels and greatly enlarged the size of the title, but then printed no title (you have cex.main=6 and main="") and you have set probability=TRUE to get a density plot, but then labeled the axis with ylab="frequ?ncia" indicating it is a frequency plot. Also at .5 intervals the bars are very small. You might try the following alternative:

hist(dados[[1]], 0:110, xlab="chuva (mm/dia)", ylab="frequ?ncia", main="", las=1)

-------
David