File tree Expand file tree Collapse file tree 5 files changed +21
-9
lines changed Expand file tree Collapse file tree 5 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 3434 - name : Install dependencies
3535 run : |
3636 python -m pip install --upgrade pip
37+ python -m pip install .
3738 python -m pip install -r doc/requirements.txt
3839
3940 - name : Build the documentation
Original file line number Diff line number Diff line change 1010
1111"""This module is the configuration for the Sphinx documentation building process"""
1212
13- import os
1413import sys
14+ from pathlib import Path
1515
1616project = "python-cmethods"
1717copyright = "2023, Benjamin Thomas Schwertfeger" # pylint: disable=redefined-builtin
1818author = "Benjamin Thomas Schwertfeger"
1919
2020# to import the package
21- sys .path .insert (0 , os .path .abspath (".." ))
21+ parent_directory = Path (".." ).resolve ()
22+ sys .path .insert (0 , str (parent_directory ))
2223
2324# import links
2425rst_epilog = ""
5051 "display_github" : True ,
5152 "github_user" : "btschwertfeger" ,
5253 "github_repo" : "python-cmethods" ,
53- "github_version" : "master/docs /" ,
54+ "github_version" : "master/doc /" ,
5455}
55- # html_theme_options = {
Original file line number Diff line number Diff line change 88License
99=======
1010
11- .. include :: ../../ LICENSE
11+ .. include :: ../LICENSE
Original file line number Diff line number Diff line change 66Bias Correction Methods
77=======================
88
9- Please note that the formulas are meant to be applied to a single time series.
10- The python-cmethods package can apply these formulas to single and
11- multidimensional data.
9+ General
10+ -------
11+
12+ - Please note that the formulas are meant to be applied to a single time series.
13+ The python-cmethods package can apply these formulas to single and
14+ multidimensional data.
15+ - Selecting the appropriate number of quantiles for distribution-based
16+ techniques is a challenging task. The number of quantiles determines the
17+ number of bins of the probability density function and the cumulative
18+ distribution function, which represent the distribution of the time series.
19+ The number of quantiles should be large enough to capture the nuances of the
20+ distribution functions but not excessively high, as this can result in a
21+ straight-line distribution, which lead to artificial bias while interpolating.
22+
1223
1324.. _linear-scaling :
1425
Original file line number Diff line number Diff line change 1+ cloup
12netCDF4 >= 1.6.1
23numpy
34setuptools_scm
45sphinx
56sphinx-rtd-theme
6- tqdm
77xarray >= 2022.11.0
You can’t perform that action at this time.
0 commit comments