Home | History | Annotate | Download | only in common

Lines Matching refs:result

45         """Solve the statement for a boolean result
51 :param select: If the result represents a boolean
58 result = self.getStatement(statement, select=select)
60 if isinstance(result, pd.DataFrame):
61 result = result.all().all()
62 elif not(isinstance(result, bool) or isinstance(result, np.bool_)): # pylint: disable=no-member
65 return result
70 result = self._parser.solve(statement)
73 if np.isscalar(result):
74 return result
77 if select is not None and len(result):
78 result = result[select]
80 result = self._parser.ref(result)
82 return result