Day: October 13, 2019

Visualize Multivariate Data – Box plot in R

Visualize Multivariate Data – Box plot in R In R, a box plot, also known as a box-and-whisker plot, is a useful tool for visualizing multivariate data, or data that has more than one variable. A box plot shows the distribution of the data by plotting the median, quartiles and outliers in a graph. It …

Visualize Univariate Data – Histogram plot in R

  Visualize Univariate Data – Histogram plot in R In R, a histogram is a useful tool for visualizing univariate data, or data that has only one variable. A histogram is a graph that shows the distribution of the data by dividing it into bins and counting the number of data points that fall into …

Visualize Univariate Data – Display Missing Data in R

    Visualize Univariate Data – Display Missing Data in R In R, when working with datasets, it is important to be aware of missing data, as it can affect the accuracy of any analysis or predictions. To visualize missing data in R, there are several methods available. One common method is to create a …

Visualize Univariate Data – DENSITY plot in R

Visualize Univariate Data – DENSITY plot in R In R, a density plot is a useful tool for visualizing univariate data, or data that has only one variable. A density plot shows the probability density function of the data, which is a smoothed version of the histogram. It allows to visualize the shape of the …