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

Method select

pandas/io/pytables.py:5569–5579  ·  view source on GitHub ↗

generate the selection

(self)

Source from the content-addressed store, hash-verified

5567 raise ValueError(msg) from err
5568
5569 def select(self):
5570 """
5571 generate the selection
5572 """
5573 if self.condition is not None:
5574 return self.table.table.read_where(
5575 self.condition.format(), start=self.start, stop=self.stop
5576 )
5577 elif self.coordinates is not None:
5578 return self.table.table.read_coordinates(self.coordinates)
5579 return self.table.table.read(start=self.start, stop=self.stop)
5580
5581 def select_coords(self):
5582 """

Callers 1

_read_axesMethod · 0.95

Calls 3

read_coordinatesMethod · 0.80
formatMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected