Tag Archives: R for Excel Users

How to generate Bar plots in R using ggpubr package

How to generate Bar plots in R using ggpubr package A bar plot is a graph that shows the distribution of a categorical variable by using bars to represent different levels of the categorical variable. It can be useful to compare the levels of the categorical variable and to see the relative frequencies of each …

How to generate Violin plots with box plots in R using ggpubr package

How to generate Violin plots with box plots in R using ggpubr package A Violin plot is a combination of a boxplot and a kernel density plot, which shows the distribution of a set of continuous data. It can be useful to visualize the spread and skewness of the data and to identify outliers. In …

How to generate Violin plots in R using ggpubr package

How to generate Violin plots in R using ggpubr package A Violin plot is a combination of a boxplot and a kernel density plot, which shows the distribution of a set of continuous data. It can be useful to visualize the spread and skewness of the data and to identify outliers. In R, there are …

How to generate Boxplots in R using ggpubr package

How to generate Boxplots in R using ggpubr package A Boxplot, also known as a Whisker plot, is a standardized way of displaying the distribution of data based on five number summary (“minimum”, first quartile (Q1), median, third quartile (Q3), and “maximum”). It can be useful to visualize the spread and skewness of the data …

How to generate histograms in R using ggpubr package

How to generate histograms in R using ggpubr package A histogram is a graph that shows the distribution of a set of continuous data by dividing the data into a series of bins and counting the number of data points that fall into each bin. In R, there are several ways to generate histograms, and …

How to utilise (load & view) built-in datasets in R

How to utilise (load & view) built-in datasets in R In this Applied Machine Learning Recipe, you will learn: How to utilise (load & view) built-in datasets in R.    Essential Gigs Nilimesh: I will develop time series forecasting model for you using python or r for $50 on… For only $50, Nilimesh will …

How to visualise scatter plots with marginal density plots in R

How to visualise scatter plots with marginal density plots in R Visualizing data in scatter plots can be useful for understanding the relationship between two variables. However, when working with large datasets, scatter plots can become cluttered and difficult to interpret. One way to overcome this issue and to gain more insight into your data …

How to visualise scatter plots with rectangular bins in R

How to visualise scatter plots with rectangular bins in R Visualizing data in scatter plots can be useful for understanding the relationship between two variables. However, when working with large datasets, scatter plots can become cluttered and difficult to interpret. One way to overcome this issue is by using rectangular bins in scatter plots. In …

How to visualise scatter plots with ellipses in R

How to visualise scatter plots with ellipses in R In this Applied Machine Learning Recipe, you will learn: How to visualise scatter plots with ellipses in R.  Essential Gigs Nilimesh: I will develop time series forecasting model for you using python or r for $50 on… For only $50, Nilimesh will develop time series …

How to visualise Data in 2D density graph in R

How to visualise Data in 2D density graph in R Visualizing data in a 2D density graph can be a useful way to understand the distribution of the data and identify patterns or outliers. A 2D density graph is a graph that shows the density of the data points in a two-dimensional space. In R, …