Easy web publishing from R
Write
R Markdown
documents in RStudio.
Share them here on RPubs.
(It’s free, and couldn’t be simpler!)
Get Started
Recently Published
Destek Vektör Makineleri (SVM) ile Sınıflandırma Analizi
Teorik Altyapı ve Sınıf Dengesizliği
Publish Document
Air Quality Index (AQI) is a standardized indicator used to communicate how polluted the air currently is or how polluted it is forecast to become. It aggregates multiple pollutants such as PM2.5, PM10, NO2, and SO2 into a single value to represent overall air quality. Monitoring AQI is crucial for public health as poor air quality can lead to respiratory and cardiovascular diseases.
HTML library(tidyverse) library(sf) library(stars)
cl204 <- st_read("RasterT_cover_l4.shp")
plot(st_geometry(cl204), graticule = TRUE, axes=TRUE)
cl204 <- st_transform(cl204, crs = 4324)
library(tidyverse)
library(sf)
cl204_4234 <- st_transform(cl204, 'EPSG:4234')
cl204_4234 |>
select(gridcode) |>
plot(graticule = TRUE, axes = TRUE)
cl204 |> select(id, gridcode, geometry) |> print(n = 3)
print(cl204)
install.packages("mapview")
library(mapview) |> suppressPackageStartupMessages()
mapviewOptions(fgb = FALSE)
cl204_4234 |> mapview(zcol = "gridcode", legend = TRUE, col.regions = sf.colors)
Simple Linear Regression
Predicting Fuel Efficiency
Detecting Overfitting and Overfitting Issues
Enhance understanding the procedure of likelihood-based chi-square hypothesis testing .
Implement the procedures for detecting overfitting/underfitting issues in practical applications.