TSA veri örnekleri
library(readr)
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.2 ✔ purrr 1.0.1
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.2 ✔ tibble 3.2.1
## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(DT)
fert_cd_2019 <- read_delim("C:/Users/hutku/OneDrive/Masaüstü/Utku DEMIR/Utku DEMIR/HHBA_2019/HHBA_2019/TR/data_tr/fert_cd_2019.csv",
delim = ";", escape_double = FALSE, trim_ws = TRUE)
## Rows: 38744 Columns: 66
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ";"
## dbl (66): BIRIMNO, FERTNO, CINSIYET, YAS, YAKINLIK, SAGLIK_SIGORTA_1, SAKATL...
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
datatable(fert_cd_2019[14:23,])
hane_cd_2019 <- read_csv("C:/Users/hutku/OneDrive/Masaüstü/Utku DEMIR/Utku DEMIR/HHBA_2019/HHBA_2019/TR/data_tr/hane_cd_2019.csv")
## Warning: One or more parsing issues, call `problems()` on your data frame for details,
## e.g.:
## dat <- vroom(...)
## problems(dat)
## Rows: 11521 Columns: 132
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## dbl (127): BIRIMNO, HH_TIP_HBA, KONUT_TIP, MULKIYET, KIRA_TUTAR, KIRA_SEKLI,...
## lgl (5): YAZLIK_AYLIK_KIRA, ARSA_AYLIK_KIRA, OTEL_MIKTAR, OTEL_KIRAYA_VERI...
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
datatable(hane_cd_2019[14:23,])
tuketim_cd_2019 <- read_csv("C:/Users/hutku/OneDrive/Masaüstü/Utku DEMIR/Utku DEMIR/HHBA_2019/HHBA_2019/TR/data_tr/tuketim_cd_2019.csv")
## Rows: 506543 Columns: 4
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## dbl (4): BIRIMNO, ELDEEDIS_SEKIL, HBS_KOD5, DEGER_D
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
datatable(tuketim_cd_2019[14:23,])