── 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
1. Чтение файла и создание копии для проверки
df_raw <-read_csv("lab5.csv")
Rows: 240 Columns: 3
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (1): org_name
dbl (2): org_id, revenue
ℹ 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.
df <- df_raw %>%select(-org_id) # Убираем org_id для основной работы
2. Топ-10 самых частых org_name (после приведения к нижнему регистру)