Generates all Force-Velocity profiles and stores them in the list and data.frame

get_all_profiles(profile_data)

Arguments

profile_data

Data frame returned from vj_profile function

Value

List with two elements: list of profiles and long data frame

Examples

fv_profile <- vj_profile(mass = 75) all_profiles <- get_all_profiles(fv_profile) all_profiles$data_frame
#> # A tibble: 33 x 3 #> profile metric value #> <fct> <chr> <dbl> #> 1 Mean Force ~ Mean Velocity Profile F0 3582. #> 2 Mean Force ~ Mean Velocity Profile F0_rel 47.8 #> 3 Mean Force ~ Mean Velocity Profile V0 1.82 #> 4 Mean Force ~ Mean Velocity Profile Pmax 1631. #> 5 Mean Force ~ Mean Velocity Profile Pmax_rel 21.7 #> 6 Mean Force ~ Mean Velocity Profile Sfv -1967. #> 7 Mean Force ~ Mean Velocity Profile Sfv_rel -26.2 #> 8 Mean Power ~ Mean Force Profile Pmax 1656. #> 9 Mean Power ~ Mean Force Profile Pmax_rel 22.1 #> 10 Mean Power ~ Mean Force Profile Pmax_location 1634. #> # … with 23 more rows