@@ -4671,7 +4671,6 @@ See the `Full Documentation <https://github.com/wesm/feather>`__.
4671
4671
Write to a feather file.
4672
4672
4673
4673
.. ipython :: python
4674
- :okwarning:
4675
4674
4676
4675
df.to_feather(' example.feather' )
4677
4676
@@ -4748,7 +4747,6 @@ See the documentation for `pyarrow <https://arrow.apache.org/docs/python/>`__ an
4748
4747
Write to a parquet file.
4749
4748
4750
4749
.. ipython :: python
4751
- :okwarning:
4752
4750
4753
4751
df.to_parquet(' example_pa.parquet' , engine = ' pyarrow' )
4754
4752
df.to_parquet(' example_fp.parquet' , engine = ' fastparquet' )
@@ -4765,7 +4763,6 @@ Read from a parquet file.
4765
4763
Read only certain columns of a parquet file.
4766
4764
4767
4765
.. ipython :: python
4768
- :okwarning:
4769
4766
4770
4767
result = pd.read_parquet(' example_fp.parquet' ,
4771
4768
engine = ' fastparquet' , columns = [' a' , ' b' ])
@@ -4788,7 +4785,6 @@ Serializing a ``DataFrame`` to parquet may include the implicit index as one or
4788
4785
more columns in the output file. Thus, this code:
4789
4786
4790
4787
.. ipython :: python
4791
- :okwarning:
4792
4788
4793
4789
df = pd.DataFrame({' a' : [1 , 2 ], ' b' : [3 , 4 ]})
4794
4790
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
4805
4801
:func: `~pandas.DataFrame.to_parquet `:
4806
4802
4807
4803
.. ipython :: python
4808
- :okwarning:
4809
4804
4810
4805
df.to_parquet(' test.parquet' , index = False )
4811
4806
0 commit comments