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.
Purpose/implementation Section
What changes are being implemented in this Pull Request?
Trying to address Issue #87, specifically that the slido export files seem to be named Polls-per-participant- now and so my latest refresh data didn't have access to some data I expected to have. This change pulls those new files, and renames the old ones to match the new ones.
What was your approach?
Polls-per-participant
to theslido_tags
vector (following the pattern of the other tags)slido_type
vector, usinggsub
to replacePolls-per-user
withPolls-per-participant
What GitHub issue does your pull request address?
Issue #87
How were the changes tested?
I followed as much of the script locally as I could and visually inspecting the
slido_files
df, I can see that the file name column has the original Polls-per-user in the name, but the slido_type column Polls-per-user's have been replaced with Polls-per-participant. I also see that the Polls-per-participant files are in the dataframe this time.Tell potential reviewers what kind of feedback you are soliciting.
@cansavvy is this the fix you were envisioning?