Skip to content

Commit e46ecdd

Browse files
committed
deploy: b9e8187
0 parents  commit e46ecdd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+71230
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

+661
Large diffs are not rendered by default.

AUTHORS/index.html

+893
Large diffs are not rendered by default.

CHANGELOG/index.html

+1,676
Large diffs are not rendered by default.

api/biology/index.html

+1,070
Large diffs are not rendered by default.

api/chemistry/index.html

+2,369
Large diffs are not rendered by default.

api/engineering/index.html

+1,122
Large diffs are not rendered by default.

api/finance/index.html

+1,567
Large diffs are not rendered by default.

api/functions/index.html

+35,654
Large diffs are not rendered by default.

api/io/index.html

+2,919
Large diffs are not rendered by default.

api/math/index.html

+2,647
Large diffs are not rendered by default.

api/ml/index.html

+1,065
Large diffs are not rendered by default.

api/polars/index.html

+5,428
Large diffs are not rendered by default.

api/timeseries/index.html

+1,909
Large diffs are not rendered by default.

api/xarray/index.html

+1,430
Large diffs are not rendered by default.

assets/_mkdocstrings.css

+143
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* Max width for docstring sections tables. */
14+
.doc .md-typeset__table,
15+
.doc .md-typeset__table table {
16+
display: table !important;
17+
width: 100%;
18+
}
19+
20+
.doc .md-typeset__table tr {
21+
display: table-row;
22+
}
23+
24+
/* Defaults in Spacy table style. */
25+
.doc-param-default {
26+
float: right;
27+
}
28+
29+
/* Parameter headings must be inline, not blocks. */
30+
.doc-heading-parameter {
31+
display: inline;
32+
}
33+
34+
/* Prefer space on the right, not the left of parameter permalinks. */
35+
.doc-heading-parameter .headerlink {
36+
margin-left: 0 !important;
37+
margin-right: 0.2rem;
38+
}
39+
40+
/* Backward-compatibility: docstring section titles in bold. */
41+
.doc-section-title {
42+
font-weight: bold;
43+
}
44+
45+
/* Symbols in Navigation and ToC. */
46+
:root, :host,
47+
[data-md-color-scheme="default"] {
48+
--doc-symbol-parameter-fg-color: #df50af;
49+
--doc-symbol-attribute-fg-color: #953800;
50+
--doc-symbol-function-fg-color: #8250df;
51+
--doc-symbol-method-fg-color: #8250df;
52+
--doc-symbol-class-fg-color: #0550ae;
53+
--doc-symbol-module-fg-color: #5cad0f;
54+
55+
--doc-symbol-parameter-bg-color: #df50af1a;
56+
--doc-symbol-attribute-bg-color: #9538001a;
57+
--doc-symbol-function-bg-color: #8250df1a;
58+
--doc-symbol-method-bg-color: #8250df1a;
59+
--doc-symbol-class-bg-color: #0550ae1a;
60+
--doc-symbol-module-bg-color: #5cad0f1a;
61+
}
62+
63+
[data-md-color-scheme="slate"] {
64+
--doc-symbol-parameter-fg-color: #ffa8cc;
65+
--doc-symbol-attribute-fg-color: #ffa657;
66+
--doc-symbol-function-fg-color: #d2a8ff;
67+
--doc-symbol-method-fg-color: #d2a8ff;
68+
--doc-symbol-class-fg-color: #79c0ff;
69+
--doc-symbol-module-fg-color: #baff79;
70+
71+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
72+
--doc-symbol-attribute-bg-color: #ffa6571a;
73+
--doc-symbol-function-bg-color: #d2a8ff1a;
74+
--doc-symbol-method-bg-color: #d2a8ff1a;
75+
--doc-symbol-class-bg-color: #79c0ff1a;
76+
--doc-symbol-module-bg-color: #baff791a;
77+
}
78+
79+
code.doc-symbol {
80+
border-radius: .1rem;
81+
font-size: .85em;
82+
padding: 0 .3em;
83+
font-weight: bold;
84+
}
85+
86+
code.doc-symbol-parameter {
87+
color: var(--doc-symbol-parameter-fg-color);
88+
background-color: var(--doc-symbol-parameter-bg-color);
89+
}
90+
91+
code.doc-symbol-parameter::after {
92+
content: "param";
93+
}
94+
95+
code.doc-symbol-attribute {
96+
color: var(--doc-symbol-attribute-fg-color);
97+
background-color: var(--doc-symbol-attribute-bg-color);
98+
}
99+
100+
code.doc-symbol-attribute::after {
101+
content: "attr";
102+
}
103+
104+
code.doc-symbol-function {
105+
color: var(--doc-symbol-function-fg-color);
106+
background-color: var(--doc-symbol-function-bg-color);
107+
}
108+
109+
code.doc-symbol-function::after {
110+
content: "func";
111+
}
112+
113+
code.doc-symbol-method {
114+
color: var(--doc-symbol-method-fg-color);
115+
background-color: var(--doc-symbol-method-bg-color);
116+
}
117+
118+
code.doc-symbol-method::after {
119+
content: "meth";
120+
}
121+
122+
code.doc-symbol-class {
123+
color: var(--doc-symbol-class-fg-color);
124+
background-color: var(--doc-symbol-class-bg-color);
125+
}
126+
127+
code.doc-symbol-class::after {
128+
content: "class";
129+
}
130+
131+
code.doc-symbol-module {
132+
color: var(--doc-symbol-module-fg-color);
133+
background-color: var(--doc-symbol-module-bg-color);
134+
}
135+
136+
code.doc-symbol-module::after {
137+
content: "mod";
138+
}
139+
140+
.doc-signature .autorefs {
141+
color: inherit;
142+
border-bottom: 1px dotted currentcolor;
143+
}

assets/images/favicon.png

1.83 KB
Loading

assets/javascripts/bundle.83f73b43.min.js

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bundle.83f73b43.min.js.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.ar.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.da.min.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.de.min.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)