Publications by Khánh

Chương 4: Xử lý giá trị đột xuất

07.07.2023

library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(outliers) 1. Z-score Quy luật 3sigma mtcars[1, 1] <- 50 mtcars UB <- mean(mtcars$mpg) + 3*sd(mtcars$mpg)...

442 sym R (1573 sym/32 pcs) 4 img

Chương 3: Missing Data

06.07.2023

1. Kiểm tra cơ chế khuyết 1.1. Sử dụng hàm có sẵn library(visdat) library(naniar) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyr) Th...

1335 sym R (746 sym/22 pcs) 1 img

Test

06.07.2023

This is an R Markdown Notebook. When you execute code within the notebook, the results appear beneath the code. Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Cmd+Shift+Enter. plot(cars) Add a new chunk by clicking the Insert Chunk button on the toolbar or by pressing Cmd+Optio...

744 sym 1 img

Chương 1: Ngôn ngữ trong R

05.07.2023

Cài đặt R Phiên bản Windows: Link Phiên bản MacOS: Chip M1: Link Chip Intel: Link Cài đặt Rstudio Phần mềm giao diện để hỗ trợ sử dụng R Lưu ý: trong máy có R thì mới sử dụng được Rstudio Link cài đặt: https://posit.co/download/rstudio-desktop/ 1. Khai báo biến Toán tử khai báo biến <-...

2989 sym R (3522 sym/116 pcs)

Chương 2: Package dplyr và tidyr

05.07.2023

Tiến hành cài và nhập gói vào phiên làm việc library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyr) 1. Một số hàm thao tác với dataset...

1670 sym R (3305 sym/30 pcs)

Chương 3: Missing Data

29.06.2023

1. Cơ chế khuyết dữ liệu Cơ chế khuyết dữ liệu MCAR MAR MNAR Thực hành xác định cơ chế gây khuyết head(attenu) Lệnh anyNA(dataset) anyNA(attenu) [1] TRUE Lệnh is.na(dataset) colSums(is.na(attenu)) event mag station dist accel 0 0 16 0 0 # TRUE = 1 # FALSE = 0 TRUE + ...

1586 sym R (491 sym/19 pcs) 4 img

[Kaggle] Bitcoin,dogecoin,etc price prediction -XGBoost

14.04.2023

library(tidyverse) library(patchwork) library(zoo) library(caret) Loading required package: lattice Registered S3 method overwritten by 'data.table': method from print.data.table Attaching package: ‘caret’ The following object is masked from ‘package:purrr’: lift dir() [1] "ADA-USD.csv" "BTC-USD.csv" "DOGE-...

25281 sym R (16329 sym/56 pcs) 9 img

[VNEvent] Logic xử lý Funnel

05.04.2023

library(plotly) ## Loading required package: ggplot2 ## ## Attaching package: 'plotly' ## The following object is masked from 'package:ggplot2': ## ## last_plot ## The following object is masked from 'package:stats': ## ## filter ## The following object is masked from 'package:graphics': ## ## layout library(tidyverse) ## ── Att...

21 sym R (2387 sym/17 pcs)

Chương 6 - Phân tích hồi quy tương quan (phần 1)

02.03.2023

Packages library(tidyverse) library(knitr) library(broom) # install.packages("broom") 1. Phân tích tương quan cov(mtcars$mpg, mtcars$hp) [1] -320.7321 Tương quan âm, khá chặt chẽ 2. Phân tích hồi quy - Hồi quy đơn m1 <- lm( mpg ~ hp, mtcars ) summary(m1) Call: lm(formula = mpg ~ hp, data = mtcars) Residuals: Min ...

1835 sym R (4955 sym/24 pcs) 1 img

Blue economy

08.09.2022

1. Load Packages library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.6 ✓ dplyr 1.0.8 ## ✓ tidyr 1.2.0 ✓ stringr 1.4.0 ## ✓ readr ...

1228 sym R (3518 sym/25 pcs) 14 img