calculate_tdee: Calculate TDEE

Description Usage Arguments Details Value See Also Examples

View source: R/tdee.R

Description

\lifecycle

stable

With this function you can calculate your total daily energy expenditure

\lifecycle

soft-deprecated

calculate_mean_tdee calculates the mean TDEE from all available methods in calculate_rmr

Usage

1
2
3
calculate_tdee(rmr, objective = 1, effort = NULL)

calculate_mean_tdee(weight, height, age, sex, bfp, objective, effort)

Arguments

rmr

basal metabolic rate

objective

integer between 0.8 - 1.3, Default: 1.0

effort

integer between 1.2 - 1.8, Default: NULL

weight

weight in kg.

height

height in centimeters, Default: NULL.

age

age in years, Default: NULL.

sex

male or female, Default: NULL.

bfp

body fat percentage. Optional variable, used when equation is 'katch-mcardle', Default: NULL.

Details

Details on setting your objective:

Details on setting your effort (PAL = physical activity level):

For more details go to https://www.sailrabbit.com/bmr/

TDEE is calculated as follows:

TDEE = RMR \times objective \times effort

Value

total daily energy expenditure

tdee

See Also

calculate_rmr

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
calculate_tdee(
  rmr = 2100,
  objective = 1,
  effort = 1.5
)
calculate_mean_tdee(
  weight = 80,
  height = 180,
  age = 30,
  sex = "male",
  bfp = 15,
  objective = 1,
  effort = 1.4
)

MarijnJABoer/befitteR documentation built on April 24, 2020, 5:43 a.m.