Tag Archives: R tutorials

Beginners tutorial with R – Decision making

(R Tutorials for Citizen Data Scientist) Beginners tutorial with R – Decision making Decision making structures require the programmer to specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be …

Beginners tutorial with R – Operators

(R Tutorials for Citizen Data Scientist)   An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. R language is rich in built-in operators and provides following types of operators. Types of Operators We have the following types of operators in R programming − Arithmetic Operators Relational Operators Logical …

Beginners tutorial with R – Data Types

(R Tutorials for Citizen Data Scientist)   Beginners tutorial with R – Data Types Generally, while doing programming in any programming language, you need to use various variables to store various information. Variables are nothing but reserved memory locations to store values. This means that, when you create a variable you reserve some space in …

R tutorials for Business Analyst – R ANOVA Tutorial: One way and Two way

(R Tutorials for Business Analyst) In this end-to-end example, you will know how to use ANOVA in R with examples. R ANOVA Tutorial: One way & Two way with Examples What is ANOVA? Analysis of Variance (ANOVA) is a statistical technique, commonly used to studying differences between two or more group means. ANOVA test is centred …

R tutorials for Business Analyst – T Test in R: One Sample and Paired

(R Tutorials for Business Analyst) In this end-to-end example, you will know how to use T test in R with examples. T Test in R: One Sample and Paired with Example What is Statistical Inference? Stastitical inference is the art of generating conclusions about the distribution of the data. A data scientist is often exposed …

R tutorials for Business Analyst – Bar Chart and Histogram in R

(R Tutorials for Business Analyst) In this end-to-end example, you will know how to use R graphics for Bar chart and Histogram plot with examples. Bar Chart & Histogram in R with Example A bar chart is a great way to display categorical variables in the x-axis. This type of graph denotes two aspects in …