A population parameter, or simply a parameter, is a numerical measure, such as the mean, median, mode, range, variance, or standard deviation, that is computed for a population data collection. A sample statistic, or simply a statistic, is a summary measure that is computed for a sample data set. We make use of numerical measurements that can be computed for a population (parameters) or a sample (statistics). Numerical descriptive measures, also known as descriptive statistics, are summary statistics that quantitatively describe the main features of a dataset. There are three measures – measures of central tendency, measures of dispersion, measures of shape that you look for in a variable. The fourth measure – measure of association is examining relationship between two variables.
Various syntaxes can be used to get the summary statistics. Some of the syntaxes below give additional comprehensive info about the data/variable.
summary(mtcars$mpg) #Gives summary about the variable in the data
summary(mtcars)
fivenum(mtcars$mpg)
Please remember to install the package every time before running the library for the first time. In the rest of content it is implied that the packages were installed using install.packages()
.
install.packages(“pastecs”)
library(pastecs)
stat.desc(mtcars$mpg)
example(stat.desc)
install.packages(“psych”)
library(psych)
describe(mtcars$mpg)
install.packages(“DescTools“)
library(DescTools)
Desc(mtcars$mpg)