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)

Arguments

light

numeric. default 3.3

moderate

numeric. default 4.0

vigorous

numeric. default 8.0

Value

list of three

Details

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.

See also

Other ipaq_functions: ipaq_compute_met(), ipaq_time_alter()

Examples

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
#>