datatable.FExpr.__repr__()

Return string representation of this object. This method is used by Python’s built-in function repr().

The returned string has the following format:

"FExpr<...>"

where ... will attempt to match the expression used to construct this FExpr.

Examples

repr(3 + 2*(f.A + f["B"]))
"FExpr<3 + 2 * (f.A + f['B'])>"