26
Jan
R Programming Solution for STAT500 Applied Statistics
Whether you're working with large datasets or small samples, R programming can help you create clear and effective visualizations that c.....
19
Jan
R Programming Solution for Effect of a Particular Environmental Regulation Plan
data<- read.csv(file = "C:\\Users\\dell\\Downloads\\GHQ1(2).csv") library("ggplot2") library("dplyr") head(data) View(data) da.....
29
Dec
R Programming Solution on Effect of Pollution
data<- read.csv(file = "C:\\Users\\dell\\Downloads\\GHQ1(2).csv") library("ggplot2") library("dplyr") head(data) View(data) data_so2.....
22
Dec
R Programming Solution on ANOVA as a Paired T - Test
setwd("~/Assignments/Job 2") rm(list = ls()) # Load libraries: library(reshape2) library(ggpubr) # Read the data: data <- read......
22
Dec
R Studio Solution on Resit Task
```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) options(warn = -1) ``` ## 1. Provide appropriate graphs to display freq.....
24
Nov
R Programming Solution for Data Management Task
review_data_toys_and_games <-read.table("Toys_and_Games_5.json", header = FALSE, sep = '\t', quote = "\"", stringsAsFactors = FAL.....
24
Nov
R Studio Solution for Data Model Task
library(DBI) library(RSQLite) if (exists("myDB")) { dbDisconnect(myDB) } myDB <- dbConnect(drv = RSQLite::SQLite(), dbname = "c.....
17
Nov
R Programming Solution for Reading the Data Task
```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## Importing libraries ```{r} library(readxl) library(strucchange.....
17
Nov
R Studio Solution for Data Engineering and Mining Task
# DIGIT RECOGNIZER # rm(list = ls()) set.seed(1001) setwd("~/Assignments/Job 1") library(data.table) library(FNN) library(caret).....