IPAQ calculations require specification of met (resting metabolic rate), which are not necessarily static values. While there are defaults for each of the three categories, there should be the possibility to alter these with newer research.
ipaq_mets(light = 3.3, moderate = 4, vigorous = 8)
numeric. default 3.3
numeric. default 4.0
numeric. default 8.0
list of three
This is a convenience function if users need to alter the default values for one or more of the categories and is compatible with the remaining IPAQ functions in this package.
Other ipaq_functions:
ipaq_compute_met()
,
ipaq_time_alter()
ipaq_mets()
#> $light
#> [1] 3.3
#>
#> $moderate
#> [1] 4
#>
#> $vigorous
#> [1] 8
#>
ipaq_mets(moderate = 5.1)
#> $light
#> [1] 3.3
#>
#> $moderate
#> [1] 5.1
#>
#> $vigorous
#> [1] 8
#>