Try to fix AE7Q action counts.
This commit is contained in:
parent
312ab95578
commit
9127b43f27
@ -35,7 +35,6 @@ for(i in 1:length(date_vec)){
|
|||||||
"Action Type"), collapse = " "),
|
"Action Type"), collapse = " "),
|
||||||
lapply(ae7q_new_tables, function(x) paste(names(x), collapse = " ")))
|
lapply(ae7q_new_tables, function(x) paste(names(x), collapse = " ")))
|
||||||
|
|
||||||
|
|
||||||
ae7q_table_new <- ae7q_new_tables[[right_table_id]]
|
ae7q_table_new <- ae7q_new_tables[[right_table_id]]
|
||||||
|
|
||||||
ae7q_list[[i]] <- ae7q_table_new %>%
|
ae7q_list[[i]] <- ae7q_table_new %>%
|
||||||
|
@ -179,18 +179,22 @@ if(!grepl("No license grants found issued on", ae7q_new_raw %>% html_text())){
|
|||||||
html_table()
|
html_table()
|
||||||
|
|
||||||
# Find the right table by the column names
|
# Find the right table by the column names
|
||||||
right_table_id <- grep(c("Callsign",
|
right_table_id <- grep(paste(c("Callsign",
|
||||||
"Region/ State",
|
"Region/ State",
|
||||||
"Entity Name",
|
"Entity Name",
|
||||||
"Applicant Type",
|
"Applicant Type",
|
||||||
"Licensee Class",
|
"Licensee Class",
|
||||||
"License Status",
|
"License Status",
|
||||||
"Action Type"),
|
"Action Type"), collapse = " "),
|
||||||
lapply(ae7q_new_tables, names))
|
lapply(ae7q_new_tables, function(x) paste(names(x), collapse = " ")))
|
||||||
|
|
||||||
ae7q_table_new <- ae7q_new_tables[[right_table_id]]
|
ae7q_table_new <- ae7q_new_tables[[right_table_id]]
|
||||||
|
|
||||||
ae7q_sum01 <- ae7q_table_new %>% mutate(across(everything(), ~na_if(., "\""))) %>%
|
ae7q_sum01 <- ae7q_table_new %>%
|
||||||
|
#mutate(across(everything(), ~na_if(., "\""))) %>%
|
||||||
|
mutate(across(everything(),
|
||||||
|
~ case_when(. == "\"" ~ NA,
|
||||||
|
TRUE ~ .))) %>%
|
||||||
fill(everything()) %>%
|
fill(everything()) %>%
|
||||||
group_by(`Action Type`) %>%
|
group_by(`Action Type`) %>%
|
||||||
summarize(count = n(), .groups = "keep") %>%
|
summarize(count = n(), .groups = "keep") %>%
|
||||||
|
Loading…
Reference in New Issue
Block a user