Skip to content
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

try trimming whitespace #31

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions pages/topic_interest.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,18 @@ expanded <- rbind(
"especially as these tools become more prevalent" = NA_character_, #remove extraneous description
"I would also be interested in any discussions of AI-adjacent topics such as the ones mentioned below in the \"Would you be interested...\" question" = NA_character_)) %>% #not really a suggested/novel topic since already asked in survey
drop_na() %>% #drop the NAs I introduced
mutate(TopicsOfInterest =
mutate(TopicsOfInterest = str_trim(TopicsOfInterest),
TopicsOfInterest =
recode(TopicsOfInterest, "git tools and patterns for branching/committing releases." = "Open Source software development strategies - git tools and patterns for branching/committing releases.", #add the original descriptor back
"One idea is for another presentation on mentoring specifically undegaduates/trainees (I believe there might have been one in the past"= "mentoring specifically undergraduates/trainees", #simplify
"or about how scientific education in the computational science sphere might evolve with the increase in generative AI tools (eg how they may hinder or enhance training)" = "how the increase in generative AI tools may hinder or enhance computational science training", #simplify
"I think presentations on new \"trends\" in computational tools outside of AI might be useful: for instance" = "new trends in computational tools outside of AI", #simplify
"a presentation dedicated to Jupyter Notebook-based resources" = "Jupyter Notebook-based resources", #simplify
"or a presentation on how new technologies can improve existing tools (eg how Rust can be used to speed up tools likegeapy)" = "how new technologies can improve existing tools (eg how Rust can be used to speed up tools like gseapy)", #simplify
"or current \"hot topics\" (eg knowleg graphs" = "knowledge graphs", #simplify
"computer vision)" = "computer vision"))
"computer vision)" = "computer vision"),
TopicsOfInterest = na_if(TopicsOfInterest, "")) %>%
drop_na()
)

kableExtra::kable(expanded, table.attr = "style='width:20%;'")
Expand All @@ -78,7 +81,8 @@ kableExtra::kable(expanded, table.attr = "style='width:20%;'")

```{r echo=FALSE, message=FALSE, warning=FALSE}
BeingGuest <- df %>% select(BeingGuestInterest) %>%
mutate(BeingGuestInterest = recode(BeingGuestInterest, "No" = NA_character_, "I might be interested in presenting on software quality, and general software development practices topics." = "Software quality and general software development practices", "I would be happy to discuss data provenance and bioinformatic data reproducibility" = "Data provenance and bioinformatic data reproducibility", "Yes, guest discussion leader. I would like to talk about tools and platforms to encourage user engagement, develop tutorials and FAIR content development for long term usage (https://elixir-europe-training.github.io/ELIXIR-TrP-FAIR-training-handbook/)" = "Tools and platforms to encourage user engagement, develop tutorials and FAIR content development for long term usage")) %>%
mutate(BeingGuestInterest = str_trim(BeingGuestInterest),
BeingGuestInterest = recode(BeingGuestInterest, "No" = NA_character_, "I might be interested in presenting on software quality, and general software development practices topics." = "Software quality and general software development practices", "I would be happy to discuss data provenance and bioinformatic data reproducibility" = "Data provenance and bioinformatic data reproducibility", "Yes, guest discussion leader. I would like to talk about tools and platforms to encourage user engagement, develop tutorials and FAIR content development for long term usage (https://elixir-europe-training.github.io/ELIXIR-TrP-FAIR-training-handbook/)" = "Tools and platforms to encourage user engagement, develop tutorials and FAIR content development for long term usage")) %>%
filter(!is.na(BeingGuestInterest))

kableExtra::kable(BeingGuest, table.attr = "style='width:20%;'")
Expand Down
Loading