```python >>> DT = dt.Frame([None]) >>> DT[:, dt.countna(f.C0), dt.by(f.C0)] | C0 C1 | void int64 -- + ---- ----- 0 | NA 0 [1 row x 2 columns] ``` The result should actually be ```python | C0 C1 | void int64 -- + ---- ----- 0 | NA 1 [1 row x 2 columns] ```