pandas
Here are 7,630 public repositories matching this topic...
-
Updated
Sep 7, 2020 - Jupyter Notebook
-
Updated
Jul 24, 2020 - Python
-
Updated
Aug 3, 2020 - Python
-
Updated
Sep 8, 2020 - Python
The documentation in the Joins section https://docs.dask.org/en/latest/dataframe-joins.html has code blocks but they aren't interactive and therefore not as useful.
I think the documentation would benefit from an interactive example with use of real data (or data from the demo API).
I had a quick rummage of the tutorial (h
-
Updated
Sep 6, 2020 - Python
-
Updated
Sep 22, 2019 - Python
-
Updated
Sep 8, 2020 - Jupyter Notebook
-
Updated
Sep 9, 2020 - Python
-
Updated
Sep 8, 2020 - Jupyter Notebook
-
Updated
May 8, 2018 - Jupyter Notebook
There are (at least) two ways in which the reinterpret_cast is misused:
- Used instead of
static_cast:
https://github.com/rapidsai/cudf/blob/f7fbc1160b17b969db2708e0cf6033d3db9fc1cf/cpp/src/io/avro/avro_gpu.cu#L95
static cast should be used to cast fromvoid*. - The use causes undefined behavior:
https://github.com/rapidsai/cudf/blob/f7fbc1160b17b969db2708e0cf6033d3db9fc1cf/cpp/src/io
-
Updated
Sep 9, 2020 - Python
-
Updated
Sep 3, 2020 - Python
-
Updated
Sep 5, 2020 - Python
-
Updated
Sep 8, 2020 - Python
-
Updated
Jul 26, 2020 - Python
-
Updated
Sep 9, 2020 - Rust
-
Updated
Sep 8, 2020 - Python
-
Updated
Feb 6, 2020
-
Updated
Sep 4, 2020 - Python
Support DataFrame.select_dtypes
What happened:
xr.DataArray([1], coords=[('onecoord', [2])]).sel(onecoord=2).to_dataframe(name='name') raise an exception ValueError: no valid index for a 0-dimensional object
What you expected to happen:
the same behavior as: xr.DataArray([1], coords=[('onecoord', [2])]).to_dataframe(name='name')
Anything else we need to know?:
I see that the array after the select
-
Updated
Feb 11, 2020 - Python
-
Updated
Sep 2, 2020 - Python
-
Updated
Mar 11, 2019 - Jupyter Notebook
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."


Location of the documentation
https://pandas.pydata.org/pandas-docs/stable/reference/indexing.html
Documentation problem
Index is described as a "set", but behaves as a multiset: len() counts each occurrent of a duplicate element separately.
Also, Index is described as an "ordered set", but that term connotes a set with an order relation on the values of its elements.