Visualizing data prior to any analysis is a basic and important step. Here we will cover boxplot , which is a type of univariate plot. Univariate plots are those that take into account one varible, these may include histograms, density plots, boxplots, etc. BOXPLOT: Boxplot is a standardized way of displaying the distribution of data based on five summary numbers from the data. Using boxplot we can see that the distribution of the data and its main characteristics are clearly observed. And it also allows us to compare different sets of data simultaneously. It is a powerfull visual tool that can be used to illustrate data, to study symmetry, to study queues, assumptions about distribution, and also can be used to compare different populations. The five numbers used as default in R are: 25th percentil : bottom of the box (Q1) 75th percentile : top of the box (Q3) 50th percentil : band near the middle of the box (Q2, median), and, the ends of the whiske...