Displaying 1 result from an estimated 1 matches for "einzeljahr".
Did you mean:
einzeljahre
2011 Jul 20
3
Grouping columns
...olumns of a
matrix.
R groups the columns alphabetically.
What can I do to group the columns in my specifications?
The script is the following:*
> #R-Skript: Anzahl xyz
>
> #Quelldatei einlesen
> b<-read.csv2("Z:/int/xyz.csv", header=TRUE)
>
> #Teilmengen f?r die Einzeljahre generieren
> b1<-subset(b,jahr=="2007")
> b2<-subset(b,jahr=="2008")
> b3<-subset(b,jahr=="2009")
>
> #tapply f?r die Einzeljahre auf die jeweilige BranchenID
> b1_1<-tapply(b1$betriebs_id,b1$umweltkompartiment,length)
> b1_2<-tapp...