Skip to content

Commit 8edeec3

Browse files
committed
late push
1 parent f623450 commit 8edeec3

File tree

146 files changed

+9715
-759
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+9715
-759
lines changed

R/bg_df.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ full_df <- full_join(con, edu, by = c("start_date", "end_date", "city", "country
3030

3131
remove(link)
3232

33-
# save.image(file = 'data/bg_df_data.RData')
34-
# load("databg_df_data.RData")
33+
save.image(file = 'data/bg_df_data.RData')
34+
# load("data/bg_df_data.RData")

R/map_dumbbell.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ p <- lapply(full_df_mod$cat %>% levels(), function(i){
1414
full_df_mod %>%
1515
filter(activity == i) %>%
1616
ggplot(., aes(y = name, color = who)) +
17-
geom_segment(aes(x = start_date, xend = end_date), linewidth = 2, position = position_dodgev(height = 0.9)) +
18-
geom_point(aes(x = start_date, y = name), size = 3, position = position_dodgev(height = 0.9)) +
19-
geom_point(aes(x = end_date, y = name), size = 3, position = position_dodgev(height = 0.9)) +
17+
geom_segment(aes(x = start_date, xend = end_date), linewidth = 2, position = ggstance::position_dodgev(height = 0.9)) +
18+
geom_point(aes(x = start_date, y = name), size = 3, position = ggstance::position_dodgev(height = 0.9)) +
19+
geom_point(aes(x = end_date, y = name), size = 3, position = ggstance::position_dodgev(height = 0.9)) +
2020
scale_fill_manual(values = my_colors, aesthetics = "color") +
2121
labs(title = paste0("BioGenies ", i), x = "Year", y = "Destination") +
2222
theme_minimal() +

0 commit comments

Comments
 (0)