diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index f8e174abfd193..6e45d6748c2a5 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -4671,7 +4671,6 @@ See the `Full Documentation `__. Write to a feather file. .. ipython:: python - :okwarning: df.to_feather('example.feather') @@ -4748,7 +4747,6 @@ See the documentation for `pyarrow `__ an Write to a parquet file. .. ipython:: python - :okwarning: df.to_parquet('example_pa.parquet', engine='pyarrow') df.to_parquet('example_fp.parquet', engine='fastparquet') @@ -4765,7 +4763,6 @@ Read from a parquet file. Read only certain columns of a parquet file. .. ipython:: python - :okwarning: result = pd.read_parquet('example_fp.parquet', engine='fastparquet', columns=['a', 'b']) @@ -4788,7 +4785,6 @@ Serializing a ``DataFrame`` to parquet may include the implicit index as one or more columns in the output file. Thus, this code: .. ipython:: python - :okwarning: df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]}) df.to_parquet('test.parquet', engine='pyarrow') @@ -4805,7 +4801,6 @@ If you want to omit a dataframe's indexes when writing, pass ``index=False`` to :func:`~pandas.DataFrame.to_parquet`: .. ipython:: python - :okwarning: df.to_parquet('test.parquet', index=False)