# onetick.py.Operation._\_gt_\_

#### Operation.\_\_gt_\_(other)

Return > in filter operation.

### Examples

```pycon
>>> t = otp.Ticks(A=range(4))
>>> t = t.where(t['A'] > 2)
>>> otp.run(t)[['A']]
   A
0  3
```
