Is there a one-liner in R that will give me the following stats for each numerical column of a dataframe?
count, mean, median, q3, q1, iqr, mode, min, max, antimode, pstdev, sstdev, pvar, svar, mad, madraw, pskew, sskew, pkurt, skurt, dpo, jarque
Something like an extended method of summary(dt)
? Any ideas?