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

Correct links to pandas docs #1250

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion datashader/tests/test_datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def test_equality_validation(other):

# Pandas-provided extension array tests
# -------------------------------------
# See http://pandas-docs.github.io/pandas-docs-travis/extending.html
# See https://pandas.pydata.org/docs/development/extending.html
@pytest.fixture
def dtype():
"""A fixture providing the ExtensionDtype to validate."""
Expand Down
2 changes: 1 addition & 1 deletion examples/getting_started/2_Pipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
"The above examples are 2D reductions that generate a single _x_ × _y_ aggregate array when given a particular reduction operator. You can instead supply a `by` reduction operator to do 3D reductions, resulting in a stack of aggregate arrays, _x_ × _y_ × _c_, where _c_ is some other column:\n",
"\n",
"**`by(column, reduction)`**: \n",
" create a 3D stack of aggregates, with each datapoint contributing to _one_ of the aggregate arrays according to the value of the indicated [categorical column](https://pandas-docs.github.io/pandas-docs-travis/user_guide/categorical.html) or `categorizer` object and using the indicated 2D `reduction` operator to create each 2D array in the 3D stack.\n",
" create a 3D stack of aggregates, with each datapoint contributing to _one_ of the aggregate arrays according to the value of the indicated [categorical column](https://pandas.pydata.org/docs/user_guide/categorical.html) or `categorizer` object and using the indicated 2D `reduction` operator to create each 2D array in the 3D stack.\n",
" \n",
"The resulting 3D stack can later be selected or collapsed into a 2D array for visualization, or the third dimension can be used for colormappping to generate an _x_ × _y_ × _color_ image.\n",
"\n",
Expand Down