Check the relationship between is_system_app and System category.

master
junos 2023-04-19 11:06:33 +02:00
parent 7e565c34db
commit a4ad4c3200
1 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,12 @@ rows_os_manufacturer <- grepl(grep_pattern, df_app_categories$package_name)
df_app_categories[!rows_os_manufacturer, ] %>%
filter(play_store_genre == "not_found")
# Also check the relationship between is_system_app and System category.
tbl(con, "applications") %>%
filter(is_system_app, play_store_genre != "System") %>%
count()
# They are perfectly correlated.
# Manually classify apps
df_app_categories[df_app_categories$play_store_genre == "not_found",] <-
df_app_categories %>%