Data Analysis

The study of the data analysis is categorized under four main branches namely;

Descriptive Analytics

there are five different measurements used in the contex of descriptive statistics namely;

  1. measure of central tendency
  2. measure of dispersion or Variation
  3. measure of position or Lovation
  4. measure of shapes
  5. measure of frequency

Measure of central Tendency

  • there are six basic measurement in the computation of central tendency including: mean, mode, median, minimum, mid-range, and maximum
data("AirPassengers")
summary(AirPassengers)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   104.0   180.0   265.5   280.3   360.5   622.0
hist(AirPassengers)

boxplot(AirPassengers)

plot(density(AirPassengers))