Learn R Programming

survivoR (version 2.3.5)

still_alive: Still alive

Description

Finds the set of players that are still alive at either the start or end of an episode, or given a set number of boots.

Usage

still_alive(.vs, .ep = NULL, .n_boots = NULL, .at = "end")

Value

Data frame

Arguments

.vs

Version season

.ep

Episode to evaluate who is alive.

.n_boots

Number of boots

.at

Either 'start' or 'end'. If 'start' the flag will indicate who is alive at the start of the episode. If 'end' it will indicate who is alive at the end of the episode i.e. after tribal council.

Examples

Run this code

library(survivoR)
library(dplyr)

# at the end of the episode
still_alive("US47", 12)

# at the start of the episode
still_alive("US47", 12, .at = "start")

Run the code above in your browser using DataLab