-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move complete installation instructions to docu's landing page * results plots are now shown in notebook instead of being stored * add docu section about recreating results from raw data * apply pre-commit changes * add installation instructions to README.md * Create notebook for preparing raw data with more extensive explanation * change index accordingly Closes #31 --------- Co-authored-by: Michael Osthege <[email protected]>
- Loading branch information
1 parent
818df4a
commit 569c146
Showing
7 changed files
with
661 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Recreate the presented data in paper and documentation from scratch | ||
|
||
## Recreate Figure 2 from the PeakPerformance publication | ||
|
||
Navigate to `docs/source/notebooks` and run the `Create_results_in_figure_2.ipynb` notebook. | ||
|
||
It is separated into two sections which work and are structured in an analogous manner. | ||
The first creates the results figure for the single peak and the second for the double peak. | ||
Both sections walk through the following sequential steps: | ||
|
||
1. open and plot example raw data | ||
2. define a model | ||
3. perform both sampling and posterior predictive sampling | ||
4. display the summary DataFrame containing the results of the peak fitting | ||
5. display cumulative plot of the posterior predictive check | ||
6. display the posterior predictive check and the peak fit against the raw data points. | ||
|
||
## Recreate the validation plot from the documentation | ||
|
||
To actually recreate the validation plot, navigate to `docs/source/notebooks` and run the notebook `Create_validation_plot_from_raw_data.ipynb`. | ||
|
||
However, not all data loaded in this notebook is raw data. | ||
Particularly, the data from the first stage of validation using synthetic data sets is pre-processed based on the results of said test using the notebook `Processing_test_1_raw_data.ipynb`. | ||
Since all necessary files are present for both notebooks, they can be run in any order. | ||
|
||
Also, the data for the comparison with the commercial software MultiQuant in the third stage of validation is contained in `docs/source/notebooks/test3_df_comparison.xlsx`. | ||
The `PeakPerformance` results listed in this file have been obtained by executing a batch run with the raw data stored in `docs/source/notebooks/paper raw data` using the settings detailed in the `Template.xlsx` file in the same directory. |
Oops, something went wrong.