filter_final_n | R Documentation |
n
Filters to the final n players e.g. the final 4.
filter_final_n(df, .final_n)
df |
Input data frame. Must have |
.final_n |
An integer to represent the final |
A data frame filtered to only the final n
library(survivoR)
library(dplyr)
confessionals |>
filter_us(47) |>
filter_final_n(6) |>
group_by(castaway) |>
summarise(n = sum(confessional_count))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.