File tree 5 files changed +21
-9
lines changed
5 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 34
34
- name : Install dependencies
35
35
run : |
36
36
python -m pip install --upgrade pip
37
+ python -m pip install .
37
38
python -m pip install -r doc/requirements.txt
38
39
39
40
- name : Build the documentation
Original file line number Diff line number Diff line change 10
10
11
11
"""This module is the configuration for the Sphinx documentation building process"""
12
12
13
- import os
14
13
import sys
14
+ from pathlib import Path
15
15
16
16
project = "python-cmethods"
17
17
copyright = "2023, Benjamin Thomas Schwertfeger" # pylint: disable=redefined-builtin
18
18
author = "Benjamin Thomas Schwertfeger"
19
19
20
20
# 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 ))
22
23
23
24
# import links
24
25
rst_epilog = ""
50
51
"display_github" : True ,
51
52
"github_user" : "btschwertfeger" ,
52
53
"github_repo" : "python-cmethods" ,
53
- "github_version" : "master/docs /" ,
54
+ "github_version" : "master/doc /" ,
54
55
}
55
- # html_theme_options = {
Original file line number Diff line number Diff line change 8
8
License
9
9
=======
10
10
11
- .. include :: ../../ LICENSE
11
+ .. include :: ../LICENSE
Original file line number Diff line number Diff line change 6
6
Bias Correction Methods
7
7
=======================
8
8
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
+
12
23
13
24
.. _linear-scaling :
14
25
Original file line number Diff line number Diff line change
1
+ cloup
1
2
netCDF4 >= 1.6.1
2
3
numpy
3
4
setuptools_scm
4
5
sphinx
5
6
sphinx-rtd-theme
6
- tqdm
7
7
xarray >= 2022.11.0
You can’t perform that action at this time.
0 commit comments