Tagged: rstats

Sentiment analysis in R

Sentiment analysis in R, In this article, we will discuss sentiment analysis using R. We will make use of the syuzhet text package to analyze the data and get scores for the corresponding words...

Animated Graph GIF with gganimate & ggplot

Animated graph gif, an animated graph can effectively draw the audience’s focus and lead their eyes to specific points on the graph. In most cases concentrating on a statistics chart is difficult and you...

Data Manipulation Techniques with dplyr

Data Manipulation Techniques with dplyr, Data manipulation techniques refer to the process of adjusting or rearranging data to make it organized and easier to read. Data manipulation is a crucial function for all types...

Correlation Analysis Different Types of Plots in R

Correlation analysis, correlation is a term that is a measure of the strength of a relationship between two variables. Pearson’s Product-Moment Correlation One of the most common measures of correlation is Pearson’s product-moment correlation,...

Data Visualization Graphs-ggside with ggplot

Data Visualization Graphs, Huge information is being collected through data in the business world, we must need a tool to picture of that data so we can interpret it and make decisions on time....

Principal Component Analysis in R

Principal Component Analysis in R, PCA is used in exploratory data analysis and for making decisions in predictive models. PCA is commonly used for dimensionality reduction by using each data point onto only the...

Normality Test in R

Normality Test in R:-In statistics methods is classified into two like Parametric methods and Nonparametric methods. The majority of the test like correlation, regression, t-test, and analysis of variance (ANOVA) assume some certain characteristics about...

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...

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...

finnstats