Azad Rasul
SmartRS

SmartRS

Follow
Follow
homePython for researchersDjangoFlaskPyQGISR Programmingbadgesnewsletter
Tag

R Language

#r

More content

Read more stories on Hashnode


Articles with this tag

15- Master the Art of Data Visualization with Animated Graphs in R Programming

Jul 24, 20216 min read1.9K views

Looking for ways to create animated graphs in R programming? Check out this tutorial that provides step-by-step instructions on how to use various R...

15- Master the Art of Data Visualization with Animated Graphs in R Programming

14- Basic plotting in R Programming

Jul 21, 20211 min read192 views

Load trees data from datasets library library(datasets) tr<-trees head(tr) Histogram hist(tr$Volume, col = 'darkred',main="Your title",...

14- Basic plotting in R Programming

13- Create a report from data in R programming

Jul 21, 20211 min read287 views

Install and load packages (DataExplorer, datasets, ggplot2): #install.packages("DataExplorer") # Load library library(DataExplorer) # load...

13- Create a report from data in R programming

12- Multiple linear regression in R programming

Jul 20, 20212 min read194 views

Multiple linear regression (MLR) example: fit <- lm(y ~ x1 + x2 + x3, data = mydata) Download the data used in this tutorial. Load data: df<-...

12- Multiple linear regression in R programming

11- Student's t.test in R programming

Jul 20, 20212 min read120 views

The t-test is used to examine the difference in means between two groups of data. By default, the t-test assumes unequal variance and applies the...

11- Student's t.test in R programming

10- The analysis of variance (ANOVA)

Jul 20, 20212 min read134 views

Create some data group <- rep(c('A1','A2', 'A3'), times=4) value <- runif(12, 10, 20) df1 <- data.frame(group, value) df1 group <- rep(c('A1','A2',...

10- The analysis of variance (ANOVA)