Rscript -e 'df <- read.csv("data.csv"); print(quantile(df$salary))'

Category: Data Science & Analysis

Rscript -e 'df <- read.csv("data.csv"); print(quantile(df$salary))'

Show the five-number summary of the salary column

quantile() returns the 0, 25, 50, 75, and 100 percent percentiles of a vector, the classic five-number summary. Percentiles describe the distribution's shape and spread far better than a single average. Add probs=c(0.05, 0.95) to request custom quantiles instead. This is the R counterpart of the datamash perc: operations.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.