Hazim Hanif
February 24, 2017
weight<-60; height<-1.65; age<-26;
(10*weight) + (6.25*height) - (5*age) + 5
## [1] 485.3125
(10*weight) + (6.25*height) - (5*age) - 161
## [1] 319.3125
These are all the rules to calculate the recommende intake based on activity type:
#Example info
weight<-60; height<-1.65; age<-26;
#Calculate the BMR
BMR<-(10*weight) + (6.25*height) - (5*age) + 5
BMR
## [1] 485.3125
#Recommended Intake for Moderate Exercise (Kilocalories)
BMR*1.55
## [1] 752.2344