Day: April 8, 2019

How to find correlations among feature variables in R

How to find correlations among feature variables in R Correlation is a statistical measure that shows the relationship between two or more variables. In R, there are various ways to find the correlation among feature variables. One of the most common ways is to use the “cor()” function. This function calculates the correlation between two …

How to create 3D scatter plot in R

How to create 3D scatter plot in R A 3D scatter plot is a graphical representation of a dataset that shows the relationship between three variables. It is a useful tool for visualizing the correlation between variables, identifying patterns, and comparing the distribution of different groups of data in three-dimensional space. In this blog post, …

How to create scatter plot in R

How to create scatter plot in R A scatter plot, also known as a scatter chart or scatter diagram, is a graphical representation of a dataset that shows the relationship between two or more variables. It is a useful tool for visualizing the correlation between variables, identifying patterns, and comparing the distribution of different groups …

How to create BOX chart in R

How to create BOX chart in R A box plot, also known as a box-and-whisker plot, is a graphical representation of a dataset that shows the distribution of the data. It is a useful tool for visualizing the median, quartiles, and range of a dataset, identifying outliers, and comparing the distribution of different groups of …