Month: December 2020

Statistics with R for Business Analysts – Linear Regression

(R Tutorials for Citizen Data Scientist) Statistics with R for Business Analysts – Linear Regression Regression analysis is a very widely used statistical tool to establish a relationship model between two variables. One of these variable is called predictor variable whose value is gathered through experiments. The other variable is called response variable whose value …

Statistics with R for Business Analysts – Mean, Median and Mode

(R Tutorials for Citizen Data Scientist) Statistics with R for Business Analysts – Mean, Median and Mode Statistical analysis in R is performed by using many in-built functions. Most of these functions are part of the R base package. These functions take R vector as an input along with the arguments and give the result. …

R Visualisation for Beginners – Scatterplots

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Scatterplots Scatterplots show many points plotted in the Cartesian plane. Each point represents the values of two variables. One variable is chosen in the horizontal axis and another in the vertical axis. The simple scatterplot is created using the plot() function. Syntax The basic syntax for …

R Visualisation for Beginners – Line Graphs

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Line Graphs A line chart is a graph that connects a series of points by drawing line segments between them. These points are ordered in one of their coordinate (usually the x-coordinate) value. Line charts are usually used in identifying the trends in data. …

R Visualisation for Beginners – Histograms

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Histograms A histogram represents the frequencies of values of a variable bucketed into ranges. Histogram is similar to bar chat but the difference is it groups the values into continuous ranges. Each bar in histogram represents the height of the number of values present …

R Visualisation for Beginners – Boxplots

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Boxplots Boxplots are a measure of how well distributed is the data in a data set. It divides the data set into three quartiles. This graph represents the minimum, maximum, median, first quartile and third quartile in the data set. It is also useful …

R Visualisation for Beginners – Bar Charts

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Bar Charts A bar chart represents data in rectangular bars with length of the bar proportional to the value of the variable. R uses the function barplot() to create bar charts. R can draw both vertical and Horizontal bars in the bar chart. In bar chart …

R Visualisation for Beginners – Pie Charts

(R Tutorials for Citizen Data Scientist) R Visualisation for Beginners – Pie Charts R Programming language has numerous libraries to create charts and graphs. A pie-chart is a representation of values as slices of a circle with different colors. The slices are labeled and the numbers corresponding to each slice is also represented in the …