Displaying 1 result from an estimated 1 matches for "schleifen".
Did you mean:
schleife
2007 Oct 12
1
Batch-Plot Histograms
...an idea why the following script doesn’t produce batch-histograms?
I’m using Windows XP and R 2.5.1.
Here’s the script:
matrix<-read.csv("C:\\Stadtwerke_mit_Umlage.csv", header=TRUE,sep=";",dec=".")
Stadtwerke<-colnames(matrix)
Bereich_blau<-66.67
Schleifen<-dim(matrix)[2]
Plan<-c(35.46,1.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=&q...