datatable.rowmax()¶
For each row, find the largest value among the columns from cols.
Parameters¶
cols
FExprInput columns.
except
TypeErrorThe exception is raised when cols has non-numeric columns.
Examples¶
from datatable import dt, f
DT = dt.Frame({"A": [1, 1, 2, 1, 2],
"B": [None, 2, 3, 4, None],
"C":[True, False, False, True, True]})
DT
| A | B | C | ||
|---|---|---|---|---|
| int32 | int32 | bool8 | ||
| 0 | 1 | NA | 1 | |
| 1 | 1 | 2 | 0 | |
| 2 | 2 | 3 | 0 | |
| 3 | 1 | 4 | 1 | |
| 4 | 2 | NA | 1 |
DT[:, dt.rowmax(f[:])]
| C0 | ||
|---|---|---|
| int32 | ||
| 0 | 1 | |
| 1 | 2 | |
| 2 | 3 | |
| 3 | 4 | |
| 4 | 2 |
See Also¶
rowmin()– find the smallest element row-wise.
The content on this page is licensed under the Creative Commons Attribution 4.0 License
(CC BY 4.0) ,
and code samples are licensed under the MIT License.