calculate_macros: Calculate macro's

Description Usage Arguments Details Value References Examples

View source: R/macro.R

Description

\lifecycle

stable

Calculate carbohydrate, protein and fat balance in grams based on the estimated daily total energy expenditure (TDEE). The acceptable macronutrient distribution ranges (AMDR) are 45–65% of your daily calories from carbs, 20–35% from fats and 10–35% from protein.

Usage

1
calculate_macros(tdee, balance = c(c = 0.5, p = 0.25, f = 0.25))

Arguments

tdee

Total daily energy expenditure

balance

Macro balance. Should sum to 1, Default: c(c = 0.5, p = 0.25, f = 0.25)

Details

Translating to grams is as followed:

Value

list of macro's in gram

References

National Research Council (US) Committee on Diet and Health. Diet and Health: Implications for Reducing Chronic Disease Risk. Washington (DC): National Academies Press (US); 1989. 6, Calories: Total Macronutrient Intake, Energy Expenditure, and Net Energy Stores. Available from: https://www.ncbi.nlm.nih.gov/books/NBK218769/

Examples

1
2
3
4
5
## Standard
calculate_macros(tdee = 2565, balance = c(c = 0.5, p = 0.25, f = 0.25))

## Keto
calculate_macros(tdee = 2565, balance = c(c = 0.05, p = 0.25, f = 0.7))

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