Publications by Khánh
Demo
Demo Author Khanh Hoang TEST TẠO BÁO CÁO BẰNG QUARTO HEADING 1 HEADING 2 LIST 1 LIST 2 LIST 3 LIST 1 LIST 2 LIST 3 print() Công thức \(x^2\) \[ \int^2_3\frac{1}{x^2}dx \] head(mtcars) mpg cyl disp hp drat wt qsec vs am gear carb Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4 Mazda RX...
212 sym 1 img
Report
Report Quarto Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org. Running Code When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this: 1 + 1 [1] 2 You can add ...
476 sym
Buổi 8: ....
library(dplyr) library(tidyr) Ôn tập các buổi trước Dplyr Thao tác với dòng Lọc: filter Xoá trùng lặp: distinct Sắp xếp: arrange Thao tác với cột Chọn cột: select Đổi tên cột: rename Tạo cột mới: mutate case_when: điều kiện (dùng cho tiền xử lý, phân tổ) Tạo bảng, tổng hợp dữ...
3627 sym R (931 sym/10 pcs)
Chương 7: Logistic
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(epiR) # phân tích odds và OR ## Loading required package: survival ## Package epiR 2.0.62 is loaded ## Ty...
167 sym R (8200 sym/61 pcs)
Chương 6: Hồi quy OLS
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(ggplot2) DATA_RAW <- read.csv('data/application_ols.csv') 1 . Phân tích tương quan 1.1. Hiệp phươn...
218 sym R (9139 sym/60 pcs) 8 img
Xử lý khuyết cho số liệu chuỗi thời gian
Dữ liệu demo: Demo dữ liệu có 6 ngày từ ngày 7 tới ngày 12, trong đó tại ngày 8 và ngày 9 bị khuyết dữ liệu (missing data) demo_data <- data.frame( x = seq(as.Date('2023-05-07'), as.Date('2023-05-12'), by = 'day'), y = c(100, NA, NA, 200, 300, 400) ) demo_data 1. Forward fill Dùng giá trị của ngày phía t...
872 sym R (1148 sym/19 pcs)
Chương 5: Trực quan hoá số liệu
application <- read.csv("data/application_sample.csv") FPT <- read.csv("data/FPT.csv") MWG <- read.csv("data/MWG.csv") VNM <- read.csv("data/VNM.csv") head(application) head(FPT) 1. Package ggplot2 aes() Khai báo các trục Vẽ màu theo nhóm 1.1. Scatter Plot library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are mas...
815 sym R (3873 sym/25 pcs) 8 img
Publish Document
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) lib...
1805 sym R (2871 sym/40 pcs) 2 img
Chương 3: Missing Data
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) lib...
1811 sym R (3793 sym/44 pcs) 2 img
Chương 3: Missing Data
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) lib...
1811 sym R (3793 sym/44 pcs) 2 img