-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b77f23a
commit dd1efc8
Showing
2 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
title: "aggregated_maps_categorical" | ||
format: html | ||
--- | ||
|
||
--- | ||
title: "Untitled" | ||
format: html | ||
--- | ||
|
||
```{r} | ||
# Extracting suffixes | ||
suffixes <- pin_nbhd %>% | ||
as_tibble() %>% | ||
select(starts_with("percentage_")) %>% | ||
names() %>% | ||
gsub("percentage_", "", .) | ||
``` | ||
|
||
```{r} | ||
maps <- lapply(suffixes, function(suffix) { | ||
map1 <- pin_nbhd %>% | ||
ggplot() + | ||
geom_sf(aes(fill = !!sym(paste0("percentage_", suffix)))) + | ||
scale_fill_viridis_c(option = "viridis", name = paste0("Value: ", suffix)) + | ||
theme_void() + | ||
coord_sf(xlim = c(-88.4, -87.52398), ylim = c(41.5, 42.2)) + | ||
ggtitle(paste0("Map for ", suffix)) | ||
return(map1) | ||
}) | ||
``` | ||
|
||
## Categorical Maps | ||
|
||
|
||
```{r, results = 'asis'} | ||
for (i in seq_along(maps)) { | ||
cat("### Map for ", suffixes[i], "\n\n") | ||
print(maps[[i]]) | ||
cat("\n\n") | ||
} | ||
``` | ||
|
||
|
||
## Plurality in Each Neighborhood | ||
|
||
```{r} | ||
pin_nbhd %>% | ||
ggplot() + | ||
geom_sf(aes(fill = as.factor(plurality_factor))) + | ||
scale_fill_viridis_d(option = "viridis") + | ||
labs(fill = "Variable") + | ||
theme_void() + | ||
coord_sf(xlim = c(-88.4, -87.52398), ylim = c(41.5, 42.2)) + | ||
ggtitle("Plurality Variable") | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
title: "add_descriptive_stats_categorical" | ||
format: html | ||
--- | ||
|
||
```{r} | ||
create_category_percentages <- function(data, group_var, feature_var) { | ||
group_vars <- if (!is.null(group_var)) { | ||
list(sym(group_var), sym(feature_var)) | ||
} else { | ||
list(sym(feature_var)) | ||
} | ||
mode_function <- function(x) { | ||
ux <- unique(x) | ||
ux[which.max(tabulate(match(x, ux)))] | ||
} | ||
category_percentages <- data %>% | ||
group_by(!!!group_vars) %>% | ||
count() %>% | ||
group_by(!!!if (!is.null(group_var)) list(sym(group_var)) else list()) %>% | ||
mutate(percentage = scales::percent(n / sum(n), accuracy = 0.01)) %>% | ||
select(!!!group_vars, percentage) %>% | ||
pivot_wider(names_from = !!sym(feature_var), values_from = percentage, values_fill = list(percentage = scales::percent(0))) | ||
# Calculate mode for each group (if group_var is present) and add it as a new column | ||
mode_column <- data %>% | ||
group_by(!!!if (!is.null(group_var)) list(sym(group_var)) else list()) %>% | ||
summarize(mode_value = mode_function(!!sym(feature_var))) %>% | ||
ungroup() | ||
# Join the mode column to the category_percentages data | ||
category_percentages <- category_percentages %>% | ||
left_join(mode_column, by = if (!is.null(group_var)) group_var else character(0)) %>% | ||
mutate(mode = as.character(mode_value)) %>% | ||
select(-mode_value) | ||
datatable(category_percentages, | ||
options = list( | ||
scrollY = "300px", | ||
scrollX = TRUE, | ||
paging = FALSE, | ||
searching = TRUE | ||
), | ||
rownames = FALSE | ||
) | ||
} | ||
``` | ||
|
||
## Descriptive Stats for Categorical Variables | ||
|
||
::: panel-tabset | ||
|
||
|
||
### Descriptive Stats for the County | ||
```{r} | ||
create_category_percentages(pin_individual, NULL, params$added_feature) | ||
``` | ||
|
||
### Descriptive Stats for the Township | ||
```{r} | ||
create_category_percentages(pin_individual, "meta_township_name", params$added_feature) | ||
``` | ||
|
||
### Descriptive Stats for the Neighborhood | ||
```{r} | ||
create_category_percentages(pin_individual, "meta_nbhd_code", params$added_feature) | ||
``` | ||
|
||
### Historgram of the Target Feature | ||
```{r} | ||
pin_individual %>% | ||
count(!!sym({{ target_feature_value }})) %>% | ||
mutate(percentage = n / sum(n) * 100) %>% | ||
ggplot(aes(x = !!sym({{ target_feature_value }}), y = percentage)) + | ||
geom_bar(stat = "identity", fill = "blue", color = "black", alpha = 0.7) + | ||
labs( | ||
x = target_feature_value, | ||
y = "Percentage" | ||
) + | ||
theme_minimal() | ||
``` | ||
|
||
::: |