Calculating Type I Error and Type II Error of Hypothesis Testing using R

2 years ago

In statistical hypothesis testing, there are usually two types of errors that the process will encounter, namely Type I and…

Using Weibull distribution in R programming

2 years ago

Weibull distribution, named after Swedish mathematician Waloddi Weibull, is a continuous distribution which is widely used to model the distribution…

Using Lognormal distributions in R programming

2 years ago

Lognormal distribution in probability and statistics is used to model the distribution of a positive random variable Y, if Y…

Implementing beta distribution in R programming

2 years ago

Beta distribution is a family of distributions which are used to model the probability of continuous random variables defined on…

Data file of university testing score: University-Fullname-full.csv

2 years ago

Data file of unviersity testing score: University-Fullname-full.csv

Create data frame in R using read.table() function

2 years ago

read.table() function in R is often used when a delimited ASCII file (e.g. text file or csv file) is to…

Creating data frames in R using data.frame()

2 years ago

Data frames are the most widely used data structures in R programming. Unlike each element in vector/matrix/array must have same…

Arrays in R programming

2 years ago

When it is needed to store many elements of same type or mode into one data object in R, you…

Working with Matrix in R programming

2 years ago

If we want to store data of same mode or type in a two-dimensional array in R data analysis, matrix…

R data structure – Working with R Vector data objects

2 years ago

Vector in R programming is one-dimensional array. Its element can be numeric, character, or logital data. To create a vector…