Tag Archives: R for Excel Users

Data Cleaning in R – remove NULL values in R

Data Cleaning in R – remove NULL values in R Data cleaning is an important step in the data analysis process, and one of the tasks is often identifying and removing NULL values. NULL values can occur for a variety of reasons, such as data entry errors or data being incomplete. These NULL values can …

Data Cleaning in R – remove duplicate values in R

Data Cleaning in R – remove duplicate values in R Data cleaning is an important step in the data analysis process, and one of the tasks is often identifying and removing duplicate values. Duplicate values can occur for a variety of reasons, such as data entry errors or data being collected multiple times. These duplicate …

Visualize Multivariate Data – Scatter Matrix plot in R

Visualize Multivariate Data – Scatter Matrix plot in R A scatter matrix plot, also known as a pair plot, is a useful tool for visualizing the relationship between multiple variables in a dataset. It creates a matrix of scatter plots, with each variable being plotted against every other variable. This allows to quickly identify patterns …

Visualize Multivariate Data – Density plot in R

  Visualize Multivariate Data – Density plot in R In this Applied Machine Learning & Data Science Recipe (Jupyter Notebook), the reader will find the practical use of applied machine learning and data science in R programming: Visualize Multivariate Data – Density plot in R.    Visualize Multivariate Data – Density plot in R …

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 – BOX plot in R

Visualize Univariate Data – BOX plot in R In R, a box plot is a useful tool for visualizing univariate data, or data that has only one variable. A box plot is a graph that uses boxes to represent the distribution of the data and to identify any potential outliers. To create a box plot …

Summarise Data in R – How to summarize class distribution in R

Summarise Data in R – How to summarize class distribution in R In R, class distribution refers to the number of observations in each class or category of a categorical variable. Understanding class distribution can help you identify patterns and trends in your data and make informed decisions about your analysis. To summarize class distribution …

Summarise Data in R – How to know dimention of a dataset in R

Summarise Data in R – How to know dimention of a dataset in R In R, it is important to know the dimensions of a dataset, such as the number of rows and columns, to ensure that it is properly formatted and ready for analysis. To check the dimensions of a dataset in R, you …