Pandas DataFrame: ge() function
DataFrame - ge() function
The ge() function returns greater than or equal to of dataframe and other, element-wise.
Among flexible wrappers (eq, ne, le, lt, ge, gt) to comparison operators
Equivalent to ==, =!, <=, <, >=, > with support to choose axis (rows or columns) and level for comparison.
Syntax:DataFrame.ge(self, other, axis='columns', level=None)
Parameters:
Name | Description | Type/Default Value | Required / Optional |
---|---|---|---|
other | Any single or multiple element data structure, or list-like object. |
scalar, sequence, Series, or DataFrame | Required |
axis | Whether to compare by the index (0 or ‘index’) or columns (1 or ‘columns’). | {0 or ‘index’, 1 or ‘columns’} Default Value: ‘columns’ |
Required |
level | Broadcast across a level, matching Index values on the passed MultiIndex level. | int or label | Required |
Returns: DataFrame of bool
Result of the comparison.
Notes:
Mismatched indices will be unioned together. NaN values are considered different (i.e. NaN != NaN).
Example:
Download the Pandas DataFrame Notebooks from here.
Previous: DataFrame - le() function
Next: DataFrame - ne() function
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/pandas/dataframe/dataframe-ge.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics