pandas
Here are 11,969 public repositories matching this topic...
-
Updated
Jul 26, 2021 - Jupyter Notebook
-
Updated
May 13, 2021 - Python
-
Updated
Apr 6, 2021 - Python
-
Updated
Aug 16, 2021 - Python
What happened:
If a negative value for drop_axis
is passed into either map_blocks
or map_overlap
a non-informative exception is raised.
What you expected to happen:
I would expect this would work as in NumPy for negative axis arguments where axis becomes axis = axis % array.ndim
. If it is not intended to work, then it should raise a user-friendly AxisError
. This came up
-
Updated
Dec 23, 2020 - Python
-
Updated
Aug 14, 2021 - Jupyter Notebook
-
Updated
Aug 16, 2021 - Python
-
Updated
Mar 20, 2021 - Jupyter Notebook
-
Updated
Aug 18, 2021 - Python
-
Updated
Aug 16, 2021 - Python
-
Updated
May 8, 2018 - Jupyter Notebook
Describe the bug
Clipping a DataFrame or Series using ints causes a cudf Failure because it won't handle the different dtypes (int and float)
Steps/Code to reproduce bug
data = cudf.Series([-0.43, 0.1234, 1.5, -1.31])
data.clip(0, 1)
...
File "cudf/_lib/replace.pyx", line 216, in cudf._lib.replace.clip
File "cudf/_lib/replace.pyx", line 198, in cudf._lib.replace.clamp
-
Updated
Aug 18, 2021 - Python
-
Updated
Feb 6, 2020
I've been experimenting with the crypto aspects of the library, and I do see that there are the endpoints for daily, weekly, and monthly, however the endpoint for intraday is not available using the "function=CRYPTO_INTRADAY" from the Cryptocurrencies section of the API.
I would assume the format would be:
`(data, meta) = cc.get_crypto_intraday(symbol = "", interval = "", market = "", outputs
codebasics / py
-
Updated
Aug 17, 2021 - Jupyter Notebook
-
Updated
Jun 8, 2021 - Python
-
Updated
Jul 4, 2021 - Python
What's wrong?
-
Updated
Aug 12, 2021 - Python
-
Updated
Aug 12, 2021 - Python
-
Updated
Mar 1, 2021 - Rust
-
Updated
Aug 18, 2021 - JavaScript
Improve this page
Add a description, image, and links to the pandas topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pandas topic, visit your repo's landing page and select "manage topics."
Recent PR noticed a code inconsistency in
style.py
style_render.py
.Try to find and replace logic like:
with the standard codebase method
get_axis_number(axis)
. Can also makeaxis
args in methods consistently accept the same input format compatible with this method.This is