Changelog
Source:NEWS.md
whippr 0.1.4
- Fixed an issue with the
perform_max()
function that theaaverage_length
argument was not being correctly considered (#15). - Fixed issue with reading data from Parvo metabolic cart (#14).
whippr 0.1.3
CRAN release: 2024-02-19
- Removed
usethis
dependency. - Fixed typos.
- Fixed
ggplot2
,tidyselect
, andtibble
warnings. - Adjusted documentation as requested by CRAN.
whippr 0.1.2
CRAN release: 2022-09-09
- Fixed a bug in
read_data.cosmed()
that made the time column to returnNA
values when the test was longer than one hour. - Added a
custom
option toread_data()
.
whippr 0.0.0.9000
Breaking changes
-
The following function calls were simplified:
-
vo2_kinetics()
anddetect_outliers()
=time_column
argument not needed anymore (this is automatically taken fromread_data()
now). -
plot_outliers()
=test_type
argument not needed anymore (this is automatically taken fromdetect_outliers()
now). -
perform_kinetics()
=time_column
andvo2_column
arguments not needed anymore (this is automatically taken fromread_data()
anddetect_outliers()
).
-
New functions/methods
-
Added function
read_data()
to read data from metabolic cart (COSMED and CORTEX).- Now you can specify the name of the time column, in case your system is not in English. Default is set to “t”.
- Added option to read data from NSpire system (thanks to @peter__leo).
- Added option to read data from Parvo Medics system (thanks to @EatsleepfitJeff).
- Added option to read data from Geratherm Respiratory system (thanks to @marcorsini61)
Added function
interpolate()
to interpolate breath-by-breath data into second-by-second.Added function
perform_average()
to perform bin- and rolling-averages.Added
run_manual_cleaner()
.Added testing of functions (internal modification only, not visible to the user).
Added new print method.
Added new functionality for analyzing data from incremental exercise.
Added
perform_max()
andvo2_max()
.Added support for the
CardioCoach
metabolic cart.
Bug fixes
Fixed issue with
read_data()
when using the COSMED metabolic cart: previously, character columns were being coerced intoNA
(thanks @Scott-S-Hannah #4).Added extra argument to
read_data()
to automatically fix the issue when the work rate column is coerced as a character column (thanks to @ThibauxV).Improved error messages in case
read_data()
cannot find the name of the time column provided.Removed the
time_column
argument from theinterpolate()
andperform_average()
functions. This is only necessary inread_data()
now.Make sure that data does not contain rows and cols with only
NA
ininterpolate()
(thanks @Scott-S-Hannah).Fixed issue renaming work rate column in
read_data()
(thanks @Scott-S-Hannah #6).