8000 DOC: FutureWarning in Sphinx build when calling read_parquet by ShaharNaveh · Pull Request #32833 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: FutureWarning in Sphinx build when calling read_parquet #32833

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

Merged
merged 10 commits into from
Mar 20, 2020
Prev Previous commit
Next Next commit
Lint issues
  • Loading branch information
MomIsBestFriend committed Mar 19, 2020
commit 7a5e021e6c1ab3a913d2d17ed076d78d3395fda8
4 changes: 3 additions & 1 deletion doc/source/user_guide/scale.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,9 @@ We can use Dask's ``read_parquet`` function, but provide a globstring of files t

import dask.dataframe as dd

ddf = dd.read_parquet("data/timeseries/ts*.parquet", engine="pyarrow", auto_mkdir=True)
ddf = dd.read_parquet(
"data/timeseries/ts*.parquet", engine="pyarrow", auto_mkdir=True
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another option is to set :okwarning: for now, as I suppose this is something to be fixed on the dask side

ddf

Inspecting the ``ddf`` object, we see a few things
Expand Down
0