MCPcopy
hub / github.com/pandas-dev/pandas / infer_axes

Method infer_axes

pandas/io/pytables.py:2932–2941  ·  view source on GitHub ↗

infer the axes of my storer return a boolean indicating if we have a valid storer or not

(self)

Source from the content-addressed store, hash-verified

2930 """are we trying to operate on an old version?"""
2931
2932 def infer_axes(self) -> bool:
2933 """
2934 infer the axes of my storer
2935 return a boolean indicating if we have a valid storer or not
2936 """
2937 s = self.storable
2938 if s is None:
2939 return False
2940 self.get_attrs()
2941 return True
2942
2943 def read(
2944 self,

Callers 11

__repr__Method · 0.95
selectMethod · 0.80
get_storerMethod · 0.80
_read_groupMethod · 0.80
__repr__Method · 0.80
create_indexMethod · 0.80
_create_axesMethod · 0.80
read_coordinatesMethod · 0.80
read_columnMethod · 0.80
deleteMethod · 0.80
readMethod · 0.80

Calls 1

get_attrsMethod · 0.95

Tested by

no test coverage detected