Skip to content

Commit

Permalink
Shorten titles
Browse files Browse the repository at this point in the history
  • Loading branch information
azvoleff committed Sep 6, 2024
1 parent 529717e commit 5503be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions status/usage_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ user_past_year %>%
theme_minimal(base_size = 16) +
geom_bar(aes(country, frac), stat='identity') +
ylab('Fraction of all users') +
ggtitle(paste0('Top 20 countries by number of users who joined between ', date(period_start),' and ', date(period_end), '\n(total users = ', user_count, ', total countries = ', country_count, ')')) +
ggtitle(paste0('Top 20 countries by number of new users between ', date(period_start),' and ', date(period_end), '\n(total users = ', user_count, ', total countries = ', country_count, ')')) +
scale_y_continuous(labels=percent) +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=.5),
axis.title.x=element_blank(),
Expand Down Expand Up @@ -492,7 +492,7 @@ user %>%
theme_minimal(base_size = 16) +
geom_bar(aes(country, frac), stat='identity') +
ylab('Fraction of all users') +
ggtitle(paste0('Top 20 countries by number of users who joined between ', date(min(user$created_at)),' and ', date(period_end), '\n(total users = ', user_count, ', total countries = ', country_count, ')')) +
ggtitle(paste0('Top 20 countries by number of new users between ', date(min(user$created_at)),' and ', date(period_end), '\n(total users = ', user_count, ', total countries = ', country_count, ')')) +
scale_y_continuous(labels=percent) +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=.5),
axis.title.x=element_blank(),
Expand Down

0 comments on commit 5503be0

Please sign in to comment.