Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d10bc2c
bug fix for when taking the derivative two times in a row
dierickxsimon May 26, 2025
d4890a6
add dmax plot for base
dierickxsimon May 26, 2025
15991b6
add docs
dierickxsimon May 26, 2025
916075d
clean up imports
dierickxsimon May 29, 2025
bad4141
inital start of docs
dierickxsimon May 29, 2025
bf4b20f
impl of mod dmax
dierickxsimon May 29, 2025
71a1612
update docs
dierickxsimon May 30, 2025
d96d5c0
addition of extra csv files containing example test data of varying t…
ihosten Jun 1, 2025
d50de85
reset of .python version
dierickxsimon Jun 1, 2025
b1d8dbe
clean up
dierickxsimon Jul 30, 2025
dedd53d
Merge pull request #11 from dierickxsimon/cleanup/cleanup_of_base_cla…
dierickxsimon Jul 30, 2025
bc6d05b
add nb pre-commit to resolve merging errors with nb
dierickxsimon Jul 30, 2025
9425826
addition of the LT1 standard increment methods and start of the loglo…
ihosten Jul 21, 2025
7adc8a0
Workable version of the Log-Log method
ihosten Jul 21, 2025
750242b
2 breakpoint detection instead of 1 in piecwise regression for improv…
ihosten Jul 21, 2025
5180fcc
implemented a method to calculate both lt1 and lt2 together based on …
ihosten Jul 21, 2025
33dd5d4
implemented a breakpoint method to determine LT2, identical to lt1_lt…
ihosten Jul 21, 2025
2c967d6
Processed mosed of the FB in the peer review, options for redefining …
ihosten Jul 29, 2025
ac946e7
add nb pre-commit to resolve merging errors with nb
dierickxsimon Jul 30, 2025
2f90685
update code to work with the base class patch
dierickxsimon Jul 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ repos:
hooks:
- id: flake8
args: [--max-line-length=88, --extend-ignore=E203] # To make it compatible with black

- repo: https://github.com/srstevenson/nb-clean
rev: 4.0.1
hooks:
- id: nb-clean
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To add a development dependency, run `uv add --dev <dependency>`.

## Testing

To run tests, run either `uv run pytest`.
To run tests, run `uv run pytest`.



Expand All @@ -43,7 +43,7 @@ To run tests, run either `uv run pytest`.
- Never push to `main` directly
- Create feature branches named `feature/{initials}_{feature_slug}` (e.g. `git checkout -b feature/sd_my_awesome_feature`)
- Create a Pull Request to `main` when ready
- Try not to merge your own PRs (we might enforce stricter rules later but for now let's keep it simple and fast)
- Try not to merge your own PRs


## Pre-PR checklist
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ A python package to analyse lactate based tresholds. Strongly inspired by [lacte

docs can be found: https://dierickxsimon.github.io/lactopy/

Still a work in progress...


`lactopy` can be installed with pip:
`lactopy` can be installed with `pip`:

```bash
pip install lactopy
Expand Down
Binary file added docs/assets/flexible-robust-diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/flexible-robust-graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions docs/css/custom_css.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.center {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
1 change: 1 addition & 0 deletions docs/lactate_models/OBLA.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::lactopy.lactate_models.OBLA
1 change: 1 addition & 0 deletions docs/lactate_models/dmax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::lactopy.lactate_models.Dmax
1 change: 0 additions & 1 deletion docs/lactate_models/general/general.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/lactate_models/second_threshold/dmax.md

This file was deleted.

6 changes: 6 additions & 0 deletions docs/overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Overview

In this overview we will give you a quick explanation of all the different models and how they can be used.

![flexible-robust-diagram](assets/flexible-robust-diagram.png){.center}
![flexible-robust-diagram](assets/flexible-robust-graph.png){.center}
Loading