Blog

Glossary

ANOVA – Analysis of Variance is the statistical method to test whether there are significant differences between 2 or more groups. This test gives 2 outputs: F-test score, p-value (statistical significant of a score value) F-test score: ANOVA assumes the means of all groups are the same, calculates how much the actual means deviate from […]

Glossary Read More »

R_programming_1

R-Programming

LET US R – PART 3- CREATE FUNCTIONS Open RStudio, create a new R script and copy paste the below function to add two numbers ##Add two numbers add2<-function(x,y) { x+y } Select the function in RStudio and click run. The console will execute the add2 function. Now, call the function by passing the arguments.

R-Programming Read More »