Trích xuất dữ liệu nông sản từ FAOSTAT theo thứ hạng và thời gian
filter_faostat.Rd
Function này giúp trích xuất dữ liệu nông sản cây trồng từ FAOSTAT theo thứ hạng và thời gian căn cứ theo chỉ tiêu `production`.
Hướng dẫn chi tiết: https://tuhocr.github.io/articles/filter_faostat.html
Báo lỗi function: tuhocr.com@gmail.com
Arguments
- data_rds
File data frame `QCL` chứa dữ liệu nông sản của FAOSTAT
- data_region
File data frame country region của FAOSTAT
- item_filter
Tên loại nông sản cần trích xuất
- rank_filter
Thứ hạng các quốc gia sản xuất nông sản. Mặc định "all" là lấy toàn bộ quốc gia
- year_filter
Năm sản xuất nông sản. Mặc định "all" là lấy toàn bộ các năm
Examples
# Sử dụng package FAOSTAT để download dataset về máy tính.
# Ở đây là dataset ở thời điểm 3/2023 dùng làm ví dụ.
# crop_production_all_data <- system.file("extdata",
# "crop_production_all_data.rds", package = "tuhocr")
# df_1 <- readRDS(crop_production_all_data)
# FAOSTAT_data_2023 <- system.file("extdata",
# "FAOSTAT_data_3-21-2023.csv", package = "tuhocr")
# df_2 <- read.csv(FAOSTAT_data_2023)
# Thực hiện dòng lệnh sẽ thu được danh sách các quốc gia
# sản xuất cà phê trên thế giới được sắp xếp theo
# thứ hạng và năm.
# coffee_data <- filter_faostat(data_rds = df_1,
# data_region = df_2,
# item_filter = "Coffee, green",
# rank_filter = 1:10,
# year_filter = 2021)
# head(coffee_data)
# str(coffee_data)