Check Dataframe Column Values In Range
Ensures that all values in a DataFrame column are within a specified range [min_value, max_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 allowable value for all entries in the column. | float | Yes | |
max_value | The maximum allowable value for all entries in the column. | float | Yes |