File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -979,6 +979,7 @@ Convert to a MultiIndex DataFrame
979
979
Alternatively, one can convert to an xarray ``DataArray ``.
980
980
981
981
.. ipython :: python
982
+ :okwarning:
982
983
983
984
p.to_xarray()
984
985
Original file line number Diff line number Diff line change @@ -4487,6 +4487,7 @@ See the `Full Documentation <https://github.com/wesm/feather>`__
4487
4487
Write to a feather file.
4488
4488
4489
4489
.. ipython :: python
4490
+ :okwarning:
4490
4491
4491
4492
df.to_feather(' example.feather' )
4492
4493
Original file line number Diff line number Diff line change @@ -357,11 +357,11 @@ HDFStore API Changes
357
357
.. ipython:: python
358
358
359
359
path = 'test.h5'
360
- df = DataFrame(randn(10,2))
360
+ df = pd. DataFrame(np.random. randn(10,2))
361
361
df.to_hdf(path,'df_table',format='table')
362
362
df.to_hdf(path,'df_table2',append=True)
363
363
df.to_hdf(path,'df_fixed')
364
- with get_store (path) as store:
364
+ with pd.HDFStore (path) as store:
365
365
print(store)
366
366
367
367
.. ipython:: python
You can’t perform that action at this time.
0 commit comments