├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── activity_extraction.R ├── feature_extraction.R ├── plotting.R ├── profile_generation.R └── tcx_loading.R ├── README.md ├── demo ├── 00Index └── pipeline.R ├── inst └── extdata │ ├── exercises │ ├── Person1 │ │ ├── Run1 │ │ │ ├── Jog.tcx │ │ │ ├── Speed_Walk.tcx │ │ │ ├── Sprint.tcx │ │ │ └── Walk.tcx │ │ ├── Run2 │ │ │ ├── Jog.tcx │ │ │ ├── Speed_Walk.tcx │ │ │ ├── Sprint.tcx │ │ │ └── Walk.tcx │ │ └── Run3 │ │ │ ├── Jog.tcx │ │ │ ├── Speed_Walk.tcx │ │ │ ├── Sprint.tcx │ │ │ └── Walk.tcx │ └── Person2 │ │ ├── Run1 │ │ ├── Jog.tcx │ │ ├── Speed_Walk.tcx │ │ ├── Sprint.tcx │ │ └── Walk.tcx │ │ ├── Run2 │ │ ├── Jog.tcx │ │ ├── Speed_Walk.tcx │ │ ├── Sprint.tcx │ │ └── Walk.tcx │ │ └── Run3 │ │ ├── Jog.tcx │ │ ├── Speed_Walk.tcx │ │ ├── Sprint.tcx │ │ └── Walk.tcx │ ├── stair_climb.tcx │ └── stair_climb │ ├── Person1 │ ├── 2017-12-11.tcx │ ├── 2017-12-13.tcx │ ├── 2018-01-08-1.tcx │ ├── 2018-01-08-2.tcx │ ├── 2018-01-10.tcx │ └── 2018-01-15.tcx │ ├── Person2 │ ├── 2017-12-12.tcx │ ├── 2017-12-13.tcx │ ├── 2017-12-14-1.tcx │ ├── 2017-12-14-2.tcx │ ├── 2018-01-15.tcx │ └── 2018-01-18.tcx │ ├── Person3 │ ├── 2018-01-08.tcx │ └── 2018-01-15.tcx │ ├── Person4 │ ├── 2018-01-19.tcx │ └── 2018-01-29.tcx │ ├── Person5 │ ├── 2018-01-18.tcx │ └── 2018-01-22.tcx │ ├── Person6 │ ├── 2018-01-10.tcx │ ├── 2018-01-12.tcx │ ├── 2018-01-17.tcx │ └── 2018-01-19.tcx │ └── Person7 │ ├── 2018-01-16.tcx │ ├── 2018-01-18.tcx │ └── 2018-01-23.tcx ├── man ├── add_sections.Rd ├── aggregate_profiles.Rd ├── all_start_end_points.Rd ├── get_activities.Rd ├── get_color.Rd ├── get_energy_profiles.Rd ├── get_features.Rd ├── get_profile.Rd ├── get_profiles.Rd ├── hr_change.Rd ├── load_tcx_dir.Rd ├── load_tcx_file.Rd ├── max_hr.Rd ├── merge_list.Rd ├── min_max_plot.Rd ├── normalise.Rd ├── plot_3d_landscape.Rd ├── plot_3d_profiles.Rd ├── plot_active.Rd ├── plot_features_profile.Rd ├── plot_features_profiles.Rd ├── plot_profile.Rd ├── plot_profiles.Rd ├── profile_coefficients.Rd ├── resting_hr.Rd ├── resting_indeces.Rd ├── select_list.Rd ├── selectdf.Rd ├── slope.Rd └── start_end_points.Rd └── plot3d.PNG /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/activity_extraction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/R/activity_extraction.R -------------------------------------------------------------------------------- /R/feature_extraction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/R/feature_extraction.R -------------------------------------------------------------------------------- /R/plotting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/R/plotting.R -------------------------------------------------------------------------------- /R/profile_generation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/R/profile_generation.R -------------------------------------------------------------------------------- /R/tcx_loading.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/R/tcx_loading.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/README.md -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/pipeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/demo/pipeline.R -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run1/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run1/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run1/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run1/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run1/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run1/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run1/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run1/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run2/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run2/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run2/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run2/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run2/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run2/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run2/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run2/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run3/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run3/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run3/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run3/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run3/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run3/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person1/Run3/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person1/Run3/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run1/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run1/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run1/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run1/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run1/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run1/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run1/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run1/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run2/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run2/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run2/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run2/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run2/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run2/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run2/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run2/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run3/Jog.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run3/Jog.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run3/Speed_Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run3/Speed_Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run3/Sprint.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run3/Sprint.tcx -------------------------------------------------------------------------------- /inst/extdata/exercises/Person2/Run3/Walk.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/exercises/Person2/Run3/Walk.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2017-12-11.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2017-12-11.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2017-12-13.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2017-12-13.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2018-01-08-1.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2018-01-08-1.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2018-01-08-2.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2018-01-08-2.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2018-01-10.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2018-01-10.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person1/2018-01-15.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person1/2018-01-15.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2017-12-12.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2017-12-12.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2017-12-13.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2017-12-13.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2017-12-14-1.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2017-12-14-1.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2017-12-14-2.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2017-12-14-2.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2018-01-15.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2018-01-15.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person2/2018-01-18.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person2/2018-01-18.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person3/2018-01-08.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person3/2018-01-08.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person3/2018-01-15.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person3/2018-01-15.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person4/2018-01-19.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person4/2018-01-19.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person4/2018-01-29.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person4/2018-01-29.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person5/2018-01-18.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person5/2018-01-18.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person5/2018-01-22.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person5/2018-01-22.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person6/2018-01-10.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person6/2018-01-10.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person6/2018-01-12.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person6/2018-01-12.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person6/2018-01-17.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person6/2018-01-17.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person6/2018-01-19.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person6/2018-01-19.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person7/2018-01-16.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person7/2018-01-16.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person7/2018-01-18.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person7/2018-01-18.tcx -------------------------------------------------------------------------------- /inst/extdata/stair_climb/Person7/2018-01-23.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/inst/extdata/stair_climb/Person7/2018-01-23.tcx -------------------------------------------------------------------------------- /man/add_sections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/add_sections.Rd -------------------------------------------------------------------------------- /man/aggregate_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/aggregate_profiles.Rd -------------------------------------------------------------------------------- /man/all_start_end_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/all_start_end_points.Rd -------------------------------------------------------------------------------- /man/get_activities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_activities.Rd -------------------------------------------------------------------------------- /man/get_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_color.Rd -------------------------------------------------------------------------------- /man/get_energy_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_energy_profiles.Rd -------------------------------------------------------------------------------- /man/get_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_features.Rd -------------------------------------------------------------------------------- /man/get_profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_profile.Rd -------------------------------------------------------------------------------- /man/get_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/get_profiles.Rd -------------------------------------------------------------------------------- /man/hr_change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/hr_change.Rd -------------------------------------------------------------------------------- /man/load_tcx_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/load_tcx_dir.Rd -------------------------------------------------------------------------------- /man/load_tcx_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/load_tcx_file.Rd -------------------------------------------------------------------------------- /man/max_hr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/max_hr.Rd -------------------------------------------------------------------------------- /man/merge_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/merge_list.Rd -------------------------------------------------------------------------------- /man/min_max_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/min_max_plot.Rd -------------------------------------------------------------------------------- /man/normalise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/normalise.Rd -------------------------------------------------------------------------------- /man/plot_3d_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_3d_landscape.Rd -------------------------------------------------------------------------------- /man/plot_3d_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_3d_profiles.Rd -------------------------------------------------------------------------------- /man/plot_active.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_active.Rd -------------------------------------------------------------------------------- /man/plot_features_profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_features_profile.Rd -------------------------------------------------------------------------------- /man/plot_features_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_features_profiles.Rd -------------------------------------------------------------------------------- /man/plot_profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_profile.Rd -------------------------------------------------------------------------------- /man/plot_profiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/plot_profiles.Rd -------------------------------------------------------------------------------- /man/profile_coefficients.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/profile_coefficients.Rd -------------------------------------------------------------------------------- /man/resting_hr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/resting_hr.Rd -------------------------------------------------------------------------------- /man/resting_indeces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/resting_indeces.Rd -------------------------------------------------------------------------------- /man/select_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/select_list.Rd -------------------------------------------------------------------------------- /man/selectdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/selectdf.Rd -------------------------------------------------------------------------------- /man/slope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/slope.Rd -------------------------------------------------------------------------------- /man/start_end_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/man/start_end_points.Rd -------------------------------------------------------------------------------- /plot3d.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCCRI/CardiacProfileR/HEAD/plot3d.PNG --------------------------------------------------------------------------------