I have a dataframe, and I want to produce a table of summary statistics including number of valid numeric values, mean and sd by group for each of three columns. I can't seem to find any function to count the number of numeric values in R. I can use length() which tells me how many values there are, and I can use colSums(is.na(x)) to count the number of NA values, but colSums(is.numeric(x)) doesn't work the same way.
I could use tapply with { length - number of NA values - number of blank values - number of text values } but surely there's an easier way.
My data (I want to group by Nominal, and produce summary stats on Actual, LinPred and QualPred)
structure(list(Nominal = c(1, 3, 6, 10, 30, 50, 150, 250, 1,
3, 6, 10, 30, 50, 150, 250, 1, 3, 6, 10, 30, 50, 150, 250, 1,
3, 6, 10, 30, 50, 150, 250, 1, 3, 6, 10, 30, 50, 150, 250, 1,
3, 6, 10, 30, 50, 150, 250, 1, 3, 6, 10, 30, 50, 150, 250, 1,
3, 6, 10, 30, 50, 150, 250, 1, 3, 6, 10, 30, 50, 150, 250), Actual = c(NA,
0.422, 0.782, 1.25, 3.85, 6.94, 18.8, 31.2, 0.118, 0.361, 0.747,
1.18, 3.58, 5.82, 16.7, 29, 0.113, 0.382, 0.692, 1.12, 3.51,
5.43, 17.1, 28.7, 0.134, 0.402, 0.718, 1.25, 3.65, 6.52, NA,
28.8, 0.123, 0.396, 0.664, 1.12, 3.83, 5.6, NA, 28.1, 0.112,
0.341, 0.7, 1.08, 3.25, 5.97, NA, 27.1, 0.106, 0.35, 0.674, 1.14,
3.28, 5.5, 17.3, 30, 0.122, 0.321, 0.673, 1.22, 3.41, 5.85, 17.6,
28.1, 0.129, 0.351, 0.737, 1.06, 3.39, 5.53, 15.9, 28.5), LinPred = c(NA,
3.49519490135683, 6.4706724568458, 10.3387932789814, 31.8283534019573,
57.3678690865708, 155.393324109068, 257.881995464799, 0.982569410055046,
2.99101676001009, 6.18138991672881, 9.76022819874748, 29.5967452353405,
48.1108278028274, 138.036371702049, 239.698521514589, 0.941243332895477,
3.16458628408028, 5.72680306797355, 9.26431527283265, 29.0181801551066,
44.887393784381, 141.342457874815, 237.218956885015, 1.07941778099747,
3.36900393602722, 6.0686652233011, 10.6136646056736, 31.1174212178803,
55.6364968333108, NA, 245.979704049963, 0.98544222985819, 3.3177445444967,
5.60733069952645, 9.50304445584572, 32.6552029637958, 47.7767234652982,
NA, 239.999441704736, 0.89146667871891, 2.8478667888003, 5.91488704870955,
9.1613151789756, 27.7001284491792, 50.9377192763467, NA, 231.456209782983,
0.887738051402174, 3.04188235451485, 5.9023034783202, 10.0163659588551,
28.9092709123842, 48.5084526866061, 152.684283738776, 264.805729023739,
1.02899341554071, 2.78585700701375, 5.89347501806154, 10.7226427795477,
30.0569707460098, 51.5984137771366, 155.332821816374, 248.031654532288,
1.09079263735132, 3.05071081477351, 6.45849647461568, 9.31008913816238,
29.8804015408367, 48.7733064943658, 140.324439376654, 251.563038635751
), QuadPred = c(NA, 3.46077095737974, 6.38659713413108, 10.1956079501556,
31.4700369979564, 57.0089799611706, 157.775316006369, 268.303966059862,
0.99289436409299, 2.96536517477853, 6.10198249392715, 9.62549220297933,
29.2517496204359, 47.7196128593832, 139.600469198163, 248.272682787657,
0.95232583127381, 3.13590297331348, 5.65480031033985, 9.13693141349813,
28.6769820181676, 44.4936547741659, 143.050878627236, 245.555818447238,
1.08417831830729, 3.33895371044810, 6.00044125019758, 10.4882228621509,
30.8451526869812, 55.4331759085967, NA, 256.446833964951, 0.991679220421247,
3.28844923081897, 5.54540949253351, 9.3907657095483, 32.3793538902883,
47.5218142460371, NA, 249.828516445647, 0.899183876120787, 2.82554368740693,
5.84875388286628, 9.05319326862309, 27.4395572248486, 50.7001828907023,
NA, 240.411024762687, 0.884412915928806, 3.05257006009469, 5.93046554432476,
10.0673979669, 29.0311859234644, 48.645035648271, 151.914544909710,
261.273991566153, 1.02660962824666, 2.79491765184684, 5.92158513760114,
10.7773327827008, 30.1813919027873, 51.7318741314584, 154.518856412401,
245.027488125567, 1.08881969774848, 3.06145444119556, 6.48990638077339,
9.35738460692028, 30.0044505131336, 48.9096796323938, 139.747394069421,
248.451100154569)), .Names = c("Nominal", "Actual", "LinPred",
"QuadPred"), row.names = c(NA, -72L), class = "data.frame")