Category: R

Discriminant Analysis in R

Discrimination tests are more important in sensory analysis. The main idea behind sensory discrimination analysis is to identify any significant difference or not. 

Here are the details of different types of discrimination methods and p-value calculations based on different protocols/methods. 

This article will discuss different types of methods and discriminant analysis in r.

paired t test tabled value vs p-value

When do you use paired t-test and how to apply the same in a practical situation? In this article, we will talk about paired t-test analysis calculation based on a mathematical formula and using...

t-test in R-How to Perform T-tests in R

t-test in R-How to Perform, Student’s t-test is the deviation of the estimated mean from its population mean expressed in terms of standard error. In this article talking about how to perform a t-test...

Proportion test in R

How to do a proportion test in R and what are the conditions that need to meet for the proportion test? The sampling method for each population is simple random sampling. The samples are...

One Sample Analysis in R

One sample analysis in R-In statistics, we can define the corresponding null hypothesis  (H0) as follow: Hypothesis: 1.      H0:m=μ,  2.      H0:m≤μ 3.      H0:m≥μ The corresponding alternative hypotheses (Ha) are as follow: 1.      Ha:m≠μ (different) 2.      Ha:m>μ (greater) 3.      Ha:m<μ (less) Outlier Detection: Out.fun<-function{abs(x-mean(x,na.rm=TRUE))>3*sd(x,na.rm=TRUE)} ddply(data,.(sample, variable),transform,outlier.team=out.fun(value)) column heading...