MFO
Calculate the Maximal Fat Oxidation (MFO) and the Intensity That Elicits MFO (Fatmax)
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in README -
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.3%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Calculate the Maximal Fat Oxidation (MFO) and the Intensity That Elicits MFO (Fatmax)
Basic Info
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 4 years ago
· Last pushed over 4 years ago
https://github.com/JorgeDelro/MFO/blob/master/
# MFO
[](https://opensource.org/licenses/MIT)
[](https://app.travis-ci.com/github/JorgeDelro/MFO/jobs/543650025/config)
[](https://app.codecov.io/gh/JorgeDelro/MFO?branch=master)
## Overview
The **MFO** package have been designed to calculate the Maximal Fat
Oxidation (MFO), the exercise intensity that elicits MFO (Fatmax) and
the SIN model to represent the fat oxidation kinetics. Three variables
can be obtained from the SIN model: dilatation (d), symmetry (s) and
traslation (t).Additionally, the package allows to calculate MFO and
Fatmax of multiple subjects.
## Resources
- [Application of MFO and
Fatmax](https://www.tandfonline.com/doi/abs/10.1080/17461391.2020.1788650?journalCode=tejs20)
(European Journal of Sport Science)
- [MFO kinetics
basis](https://journals.lww.com/acsm-msse/Fulltext/2009/08000/A_Mathematical_Model_to_Describe_Fat_Oxidation.11.aspx)
(Medicine & Science in Sport & Exercise)
## Example
This is a basic example which shows you how to use the MFO package:
``` r
library(devtools)
install_github("JorgeDelro/MFO")
library(MFO)
```
First, we have to load the data which consists in 3 databases: -
basal\_df: basal metabolism database. - MFO\_df: MFO test database. -
VO2max\_df: results of a graded exercise test of which the VO2max of the
subject is going to be extracted.
``` r
# Read dfs
data(list = c("basal_df", "MFO_df", "VO2max_df"), package = "MFO")
# Convert to data.frame
basal_df <- data.frame(basal_df)
MFO_df <- data.frame(MFO_df)
VO2max_df <- data.frame(VO2max_df)
```
Then, we can used the function MFO
``` r
result_MFO <- MFO(step_time = 20,
db_MFO = MFO_df,
db_basal = basal_df,
db_graded = VO2max_df,
cv_var = "RER",
author = "Frayn",
VO2max = NULL)
```
and the MFO can be plotted
``` r
print(result_MFO$MFO_plot)
```
MFO kinetics are calculated using a database returned from MFO function
called MFO\_db.
``` r
result_MFO_kinetics <- MFO_kinetics(result_MFO$MFO_db)
```
And again the function returns a plot with the results calculated
``` r
print(result_MFO_kinetics$MFO_kinetics_plot)
```
Owner
- Name: Jorge del Rosario
- Login: JorgeDelro
- Kind: user
- Location: Cádiz (Spain)
- Repositories: 3
- Profile: https://github.com/JorgeDelro
Assistant Professor at the Degree of Sport Science (University of Cádiz)
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 234 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: MFO
Maximal Fat Oxidation and Kinetics Calculation
- Homepage: https://github.com/JorgeDelro/MFO
- Documentation: http://cran.r-project.org/web/packages/MFO/MFO.pdf
- License: MIT + file LICENSE
-
Latest release: 0.1.0
published over 4 years ago
Rankings
Forks count: 28.8%
Dependent packages count: 29.8%
Stargazers count: 35.2%
Dependent repos count: 35.5%
Average: 42.3%
Downloads: 82.1%
Maintainers (1)
Last synced:
11 months ago
Dependencies
DESCRIPTION
cran
- R >= 2.10 depends
- dplyr * imports
- ggplot2 * imports
- magrittr * imports
- minpack.lm * imports
- openxlsx * imports
- readxl * imports
- stats * imports
- stringr * imports
- tibble * imports
- tidyr * imports
- covr * suggests
- testthat >= 3.0.0 suggests