Learn R Programming

burnr (version 0.4.0)

get_event_years: Get years with events for an fhx object.

Description

Get years with events for an fhx object.

Usage

get_event_years(x, scar_event = TRUE, injury_event = FALSE,
  custom_grep_str = NULL)

Arguments

x

An fhx object.

scar_event

Boolean indicating whether years with scar events should be returned. Default is TRUE.

injury_event

Boolean indicating whether years with injury events should be returned. Default is FALSE.

custom_grep_str

Character string to pass a custom grep search pattern to search rec_type column for. Undefined by default.

Value

A list. Elements of the list are integer vectors giving the years with events for each fhx series. Each element's name reflects the series name.

Examples

Run this code
# NOT RUN {
data(pgm)
get_event_years(pgm, scar_event = TRUE, injury_event = TRUE)

# Passing a custom string to grep. This one identified recorder years:
get_event_years(pgm, custom_grep_str = 'recorder_')

# Use with composite to get composite years:
comp <- composite(pgm, comp_name = 'pgm')
event_yrs <- get_event_years(comp)[['pgm']]
print(event_yrs)

# }

Run the code above in your browser using DataLab