X-Men Comics
Data manipulation, Lollipop graph, Grouping using floor division
Notable topics: Data manipulation, Lollipop graph, Grouping using floor division
Recorded on: 2020-06-29
Timestamps by: Eric Fletcher
Screencast
Timestamps
Using separate
to separate the name from secrete identity in the character
column
Using summarize
and across
to find the frequency of the action variables and find out how many issues each action was used for each character
Create a geom_col
chart to visualize which character speaks in the most issues
Create a geom_point
chart to visualize each character’s average lines per issue in which the character is depicted
Create a geom_point
chart to visualize each character’s average thoughts per issue in which the character is depicted
Create a geom_point
chart to visualize character’s speech versus thought ratio per issue in which the character is depicted
Create a geom_point
to visualize character’s number of lines while in costume versus not in costume
Create a geom_point
chart to visualize the lines in costume versus lines out of costume ratio
Create a lollipop graph
using geom_point
and geom_errorbarh
to visualize the lines in costume versus lines out of costume ratio and their distance from 1.0 (1 to 1)
Use summarize
to find the frequency of each location and the total number of unique issues where the location is used
Use summarize
and fct_lump
to count how many issues each author has written while lumping together all authors except the most frequent
Use summarize
and fct_lump
to see if the authors rates of passing the Bechdel test differ from one another
Create a geom_line
chart to visualize if the rates of passing the Bechdel test changed over time and floor division
%/%
to generate 20 observations per group
Create a geom_col
to visualize the amount of lines each character has per issue over time giving context to Bechdel test passing rates
Summary of screencast