search for: fclass_types

Displaying 1 result from an estimated 1 matches for "fclass_types".

Did you mean: class_type
2009 Sep 15
2
best method to format output of frequency table
I have some security alert log data that I'm parsing and doing some stats on. One of the fields is the "Classtype" which is the enumerated value of the type of alert found. classtypes = factor( alerts$Classtype ) fclass_types = table( classtypes ) fclass_types gives me a frequency table of the intrusion types: fclass_types classtypes attempted-admin attempted-recon 18 93 35 attempted-user...