Displaying 2 results from an estimated 2 matches for "ufigkeit".
Did you mean:
ssigkeit
2010 Jun 11
2
r code to broaden the boarder of the bars of a histogram
To whom it may concern,
I have a problem concerning the design of a histogram. How do I change
the border widths of the bars of a histogram. The initial command is:
hist (punkte,breaks=30, xlab="Punkte", ylab="H?ufigkeit",
main="Histogramm", col= heat.colors(30), border= "red")
I suspect that it has to do with the "lwd" command but can't figure it out.
Kind regards,
Andreas Baranowski
University of Klagenfurt
Universit?tsstra?e 65-67
9020 Klagenfurt
Austria
2007 Oct 12
1
Batch-Plot Histograms
....75,63.49,13.52,39.38,21.83)
Median<-apply(matrix,2,median)
breaks<-round((0.01)*dim(matrix[1]))
for(i in 1:Schleifen){
hist(matrix[,i],main=paste("Risiko-Chancenprofil der Stadtwerke ",
Stadtwerke[i]),col="blue",xlab="EBIT in Mio. €", ylab="Häufigkeit",breaks[1])
abline(v=Median[i],lwd=2,col="grey",lty=3)
axis(side=1,at=Median[i],labels="Median",col="grey")
hist_data<-hist(matrix[,i],plot=F,breaks[1])
Quantil_unten<-quantile(matrix[,i],((100-Bereich_blau)/2)/100)
Quantil_oben<-quantile(m...