I would like to summerize my data frame ( actually the frequence of each element in dataframe)
I use table
function to do this job:
a<-table(EndResult$Masstab)
a
but it returns me some elements with Null frequent!
.X20_TemperaturCPU
0
.Akt_Fuellprogramm.0..Rezept_Nummer
534
.Anwahl_Programm_Sorte.Programmnummer_Angef.0.
510
.Anwahl_Programm_Sorte.Sortennummer_Angef.0.
180
if there is no such element, then actually it should not be showed this element.
if I am looking for such an element:
EndResult[(EndResult$Masstab==".X20_TemperaturCPU"),]
it returns me:
[1] Masstab Mf1MF2 MF1OF MF2OF MF1 MF2 OF
<0 Zeilen> (oder row.names mit Länge 0)
why gives me this table function an element with the frequence of null?