-
Notifications
You must be signed in to change notification settings - Fork 0
feat: ✨ post on running the two GitHub workshops #185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
14d9991
feat: :sparkles: post on running the two GitHub workshops
lwjohnst86 f4deb64
fix: :pencil2: edits from review
lwjohnst86 9aa493a
chore(pre-commit): :pencil2: automatic fixes
pre-commit-ci[bot] a21ec7a
style: :art: reformat Markdown
lwjohnst86 c0c03f2
style: :lipstick: don't use axes labels between plots
lwjohnst86 ddab5c2
Merge branch 'main' into feat/post-on-the-two-github-workshops
lwjohnst86 643e80f
fix: :pencil2: use "people" rather than "members"
lwjohnst86 9b7a609
Merge branch 'feat/post-on-the-two-github-workshops' of https://githu…
lwjohnst86 842c6a6
fix: :pencil2: add mention of WP1 of DP-Next
lwjohnst86 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,50 @@ | ||
| # pak::pak("rostools/samwise", ask = FALSE) | ||
|
|
||
| library(tidyverse) | ||
| library(samwise) | ||
|
|
||
| overview <- read_surveys("gh_intro", "overview") | ||
| feedback <- read_surveys("gh_intro", "feedback-quantitative") | ||
|
|
||
| plot_overview_community <- function(data) { | ||
| data |> | ||
| plot_overview() + | ||
| scale_fill_manual(values = rep("#196440", 14)) + | ||
| facet_grid( | ||
| cols = vars(date), | ||
| rows = vars(question), | ||
| scales = "free", | ||
| space = "free_y", | ||
| axes = "all_y", | ||
| labeller = ggplot2::label_wrap_gen(width = 10) | ||
| ) + | ||
| theme( | ||
| panel.border = element_rect(color = "grey85") | ||
| ) | ||
| } | ||
|
|
||
| save_plot_feedback <- function(data) { | ||
| ggsave( | ||
| filename = glue::glue("feedback-{unique(data$date)}.svg"), | ||
| plot = plot_feedback(data) + | ||
| scale_x_continuous(breaks = seq(0, 12, by = 2)) | ||
| ) | ||
| } | ||
|
|
||
| # Get numbers for workshop | ||
| overview |> | ||
| summarise(n = sum(count), .by = c(date, question)) |> | ||
| distinct(date, n) | ||
|
|
||
| feedback |> | ||
| summarise(n = sum(n), .by = c(date, statement)) |> | ||
| distinct(date, n) | ||
|
|
||
| ggsave( | ||
| filename = "overview.svg", | ||
| plot = plot_overview_community(overview) | ||
| ) | ||
|
|
||
| feedback |> | ||
| group_split(date) |> | ||
| walk(save_plot_feedback) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.