Check Dataframe Column Has Min Value
Ensures a column in a Pandas DataFrame has a minimum value (column >= min_value).
| Device Type |
|---|
| Jupyter |
Variables:
| Variable Name | Variable Description | Type | Required? | Default |
|---|---|---|---|---|
df_name | The name of the student's DataFrame variable. | str | Yes | |
column_name | The name of the column to check in the DataFrame. | str | Yes | |
min_value | The minimum value that all elements in the column should meet or exceed. | float | Yes |