We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe201a2 commit 84fc7bfCopy full SHA for 84fc7bf
doc/source/io.rst
@@ -2553,7 +2553,7 @@ for some advanced strategies
2553
2554
.. ipython:: python
2555
2556
- store = HDFStore('store.h5')
+ store = pd.HDFStore('store.h5')
2557
print(store)
2558
2559
Objects can be written to the file just like adding key-value pairs to a
@@ -2611,7 +2611,7 @@ Closing a Store, Context Manager
2611
2612
# Working with, and automatically closing the store with the context
2613
# manager
2614
- with HDFStore('store.h5') as store:
+ with pd.HDFStore('store.h5') as store:
2615
store.keys()
2616
2617
0 commit comments