Perform a complete rebound analysis
rebound_analysis.Rd
This function calls all rebound analysis functions in the correct order
Arguments
- .eeu_data
Energy efficiency upgrade information in a data frame. See
load_eeu_data()
for an example data frame.
Examples
complicated <- load_eeu_data() %>%
calc_orig() %>%
calc_star() %>%
calc_hat() %>%
calc_bar() %>%
calc_tilde() %>%
calc_Deltas() %>%
calc_rebound()
simple <- load_eeu_data() %>%
rebound_analysis()
all.equal(complicated, simple)
#> [1] TRUE