Power analysis for t-test using R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Power analysis is a part of planning analysis for experimental design. It is usually used to determine the minimum sample size required to detect a specified effect with Read more…
How to generate descriptive statistics in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! When we have a data set on hand, the first step of data analysis is usually drawing descriptive statistics. The most common descriptive statistics for numerical variables are Read more…
Some basic mathematical functions in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! In this post, we list some of the most common mathematical functions in R. abs() – compute absolute value of a numerical input. sqrt() – compute square root Read more…
How to modify data frame using transform() function in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Similar as with() function in R, transform() function provides a way to work on data frame with simplified code inside its block. transform() is mostly used to modify Read more…
Using with() to simply your object operations in R
We provide effective and economically affordable training courses for R and Python, click here for more details and course registration ! with() function in R provides an alternative way of carrying out several operations bypassing inputting object name repeatedly. For example, we have a data frame ‘grade’ on hand, and Read more…
How to use apply() function in R
We provide effective and economically affordable training courses for R and Python, click here for more details and course registration ! apply() function in R programming is used to perform a specified function, either a R base installation function or an user-written function, to the rows or columns of a Read more…
Using probability functions in R
We provide effective and economically affordable training courses for R and Python, click here for more details and course registration ! R provides rich availability of using probability functions. Probability functions in R takes the form [dpqr][prob], Where [dpqr] represent which kind of variates the function works on d – Read more…
Subseting datasets in R
We provide effective and economically affordable training courses for R and Python, click here for more details and course registration ! When a data frame is created in R, usually parts of it will be used later. Subset of the dataset, either by row or by column, or both can Read more…
Merging and combining datasets using merge(), rbind() and cbind() in R
We provide effective and economically affordable training courses for R and Python, click here for more details and course registration ! R provides two functions which make combine different datasets easy and feasible. rbind() is used when two datasets have same column variables and data observations are combined and expanded, Read more…