pandas
Here are 7,356 public repositories matching this topic...
-
Updated
Jul 15, 2020 - Jupyter Notebook
-
Updated
Jul 24, 2020 - Python
-
Updated
Aug 3, 2020 - Python
-
Updated
Aug 18, 2020 - Python
-
Updated
Aug 16, 2020 - Python
If you join Dask DataFrame on a categorical column, then the outputted Dask DataFrame column is still category dtype. However, the moment you .compute() the outputted Dask DataFrame, then the column is the wrong dtype, not categorical.
Tested on Dask 2.14.0 and Pandas 1.0.3
This example where the category type looks like a float, so after .compute(), the dtype is float.
import dask.d
-
Updated
Sep 22, 2019 - Python
-
Updated
Aug 18, 2020 - Jupyter Notebook
-
Updated
Aug 18, 2020 - Python
-
Updated
Aug 5, 2020 - Jupyter Notebook
-
Updated
May 8, 2018 - Jupyter Notebook
Depends on #6000
Current cuIO benchmarks only use random data with low repetition. Encode/decode of some formats (ORC, Parquet...) varies significantly depending on the data profile.
Also, newly supported data types (like lists) are not covered.
As of now, the missing cases are:
- Reading RLE encoded ORC files.
- Reading RLE encoded Parquet files.
- Writing RLE-friendly data t
-
Updated
Aug 18, 2020 - Python
-
Updated
Jul 20, 2020 - Python
-
Updated
Aug 6, 2020 - Python
-
Updated
Aug 17, 2020 - Python
-
Updated
Jul 26, 2020 - Python
-
Updated
Apr 4, 2020 - Rust
Series.reindex
Implement Series.reindex.
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.reindex.html
-
Updated
Aug 17, 2020 - Python
-
Updated
Feb 6, 2020
-
Updated
May 27, 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
Aug 12, 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/docs/dev/reference/api/pandas.to_numeric.html?highlight=to_numeric#pandas.to_numeric
Documentation problem
The documentation declares that the
downcastargument ofpd.to_numericcan use the valueint. However, onlyintegeris working in the real code: