Add functions to classify active travel collision types#310
Open
Robinlovelace wants to merge 1 commit into
Open
Add functions to classify active travel collision types#310Robinlovelace wants to merge 1 commit into
Robinlovelace wants to merge 1 commit into
Conversation
- Add classify_active_travel() to categorize pedal cycle collisions - Add filter functions: filter_left_hook, filter_right_hook, filter_dooring, filter_alongside, filter_failed_give_way - Add count_active_travel() for summarization - Add vignette demonstrating classification on 2024 data Closes #309
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR adds new functions to classify STATS19 collisions involving pedal cycles into common active travel categories based on vehicle maneuvers and collision context.
New functions
classify_active_travel()- Classifies vehicle records into active travel categoriescount_active_travel()- Summarizes counts by categoryfilter_left_hook()- Filter for left hook collisionsfilter_right_hook()- Filter for right hook collisionsfilter_dooring()- Filter for dooring incidentsfilter_alongside()- Filter for sideswipe collisionsfilter_failed_give_way()- Filter for failed to give way collisionsCategories
The classification identifies these common active travel collision types:
2024 England results
New vignette
Added
vignettes/active-travel.Rmddemonstrating the classification functions.Closes #309