Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(example): Adds Confidence Interval Ellipses #3747

Merged
merged 32 commits into from
Jan 18, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a22e8dc
Create deviation_ellipses.py
Feb 26, 2018
1983ede
docs: Initial rewrite of (#514)
dangotbanned Jan 4, 2025
dc7639d
ci(typing): Adds `scipy-stubs` to `altair[doc]`
dangotbanned Jan 4, 2025
a296b82
fix: Only install `scipy-stubs` on `>=3.10`
dangotbanned Jan 4, 2025
eb25871
chore(typing): Ignore incorrect `pandas` stubs
dangotbanned Jan 4, 2025
279fca5
ci(typing): ignore `scipy` on `3.9`
dangotbanned Jan 4, 2025
4944b80
docs: Add missing category
dangotbanned Jan 4, 2025
7cd2a77
fix: Add missing support for `from __future__ import annotations`
dangotbanned Jan 4, 2025
be087d2
test: skip example when `scipy` not installed
dangotbanned Jan 4, 2025
1623629
docs: reduce segments `100` -> `50`
dangotbanned Jan 4, 2025
a357668
docs: Clean up `numpy`, `scipy` docs/comments
dangotbanned Jan 4, 2025
ac34139
refactor: Simplify `numpy` transforms
dangotbanned Jan 4, 2025
e0e276b
docs: add tooltip, increase size
dangotbanned Jan 4, 2025
dc0ae52
fix: Remove incorrect range stop
dangotbanned Jan 5, 2025
4969a98
refactor: Remove special casing `__future__` import
dangotbanned Jan 5, 2025
dcb9fa5
docs: Remove unused `method` code
dangotbanned Jan 5, 2025
bd4e30f
docs: rename to 'Confidence Interval Ellipses'
dangotbanned Jan 5, 2025
62927af
docs: add references to description
dangotbanned Jan 5, 2025
250d2b4
Merge branch 'main' into vegalite_v2_examples
dangotbanned Jan 6, 2025
fadb2e3
Merge branch 'main' into vegalite_v2_examples
dangotbanned Jan 6, 2025
5886aae
Merge branch 'main' into vegalite_v2_examples
dangotbanned Jan 9, 2025
714e67f
Merge remote-tracking branch 'upstream/main' into vegalite_v2_examples
dangotbanned Jan 10, 2025
182baea
docs: Adds methods syntax version
dangotbanned Jan 10, 2025
fa280f1
refactor: Rewrite `pd_ellipse`
dangotbanned Jan 10, 2025
c578ac1
Merge branch 'main' into vegalite_v2_examples
dangotbanned Jan 16, 2025
40f2402
Merge remote-tracking branch 'upstream/main' into vegalite_v2_examples
dangotbanned Jan 17, 2025
f72da5a
ci(uv): sync `scipy-stubs`
dangotbanned Jan 17, 2025
3debf11
refactor(typing): Try removing `from __future__ import annotations`
dangotbanned Jan 17, 2025
e6c9c5f
refactor: rename `np_ellipse` -> `confidence_region_2d`
dangotbanned Jan 17, 2025
7401a08
refactor: rename `pd_ellipse` -> `grouped_confidence_regions`
dangotbanned Jan 17, 2025
66c4f81
docs: change category to `"case studies"`
dangotbanned Jan 17, 2025
1d01fa0
styling
mattijn Jan 18, 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
Prev Previous commit
Next Next commit
ci(typing): Adds scipy-stubs to altair[doc]
`scipy` is only used for one example in the user guide, but this will be the second
https://docs.scipy.org/doc/scipy/release/1.15.0-notes.html#other-changes
dangotbanned committed Jan 4, 2025
commit dc7639d4a41baf3a476403238c1d970927ba352f
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ doc = [
"myst-parser",
"sphinx_copybutton",
"sphinx-design",
"scipy",
"scipy-stubs[scipy]",
]

[tool.hatch.version]