We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3d145 commit 17e013dCopy full SHA for 17e013d
doc/source/io.rst
@@ -2895,6 +2895,26 @@ everything in the sub-store and BELOW, so be *careful*.
2895
2896
.. _io.hdf5-types:
2897
2898
+
2899
+.. warning:: Hierarchical keys cannot be retrieved as dotted (attribute) access as described above for items stored under root node.
2900
2901
+ .. ipython:: python
2902
2903
+ store.foo.bar.bah
2904
+ AttributeError: 'HDFStore' object has no attribute 'foo'
2905
2906
+ store.root.foo.bar.bah
2907
+ /foo/bar/bah (Group) ''
2908
+ children := ['block0_items' (Array), 'axis1' (Array), 'axis0' (Array), 'block0_values' (Array)]
2909
2910
+ Use explicit string based keys
2911
2912
2913
2914
+ bah = store['foo/bar/bah']
2915
2916
2917
2918
Storing Types
2919
'''''''''''''
2920
0 commit comments