HydUtils is a Python utility library designed for data handling and validation, especially for time series and hydrological datasets.
Project description
HydUtils
HydUtils is a Python utility library designed for data handling and validation, especially for time series and hydrological datasets. It provides several useful functions for working with time series data, including validation, filtering, error metrics, and more, making it easier to handle and analyze hydrological and weather-related datasets.
Installation
pip install hydutils
Usage
1. Validate Columns for Nulls
The function validate_columns_for_nulls checks for columns that contain null values and raises an error if any are
found.
from hydutils.df_helper import validate_columns_for_nulls
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, None], "c": [7, 8, 9]})
# Validate for null values in any column
validate_columns_for_nulls(df)
# Specify columns to check
validate_columns_for_nulls(df, columns=["b"])
# Handling missing columns
validate_columns_for_nulls(df, columns=["d"]) # This will raise an error if column "d" is missing
2. Validate Time Series Interval
The validate_interval function checks that the time intervals between rows in the time series are consistent.
from hydutils.df_helper import validate_interval
import pandas as pd
df = pd.DataFrame({
"time": pd.date_range(start="2023-01-01", periods=5, freq="h")
})
# Check if the time intervals are consistent
validate_interval(df, interval=1)
3. Filter Time Series
The filter_timeseries function allows you to filter your time series DataFrame based on a start and/or end date.
from hydutils.df_helper import filter_timeseries
import pandas as pd
from datetime import datetime
df = pd.DataFrame({
"time": pd.date_range(start="2023-01-01", periods=5, freq="h")
})
# Filter data between a start and end date
start = datetime(2023, 1, 1, 1)
end = datetime(2023, 1, 1, 3)
filtered_data = filter_timeseries(df, start=start, end=end)
4. Error Metrics
The hydutils.metrics module includes several commonly used metrics to evaluate model performance. These include MSE,
RMSE, NSE, R², PBIAS, and FBIAS.
4.1 Mean Squared Error (MSE)
The mse function calculates the Mean Squared Error between two arrays.
from hydutils.statistical_metrics import mse
import numpy as np
simulated = np.array([3.0, 4.0, 5.0])
observed = np.array([2.9, 4.1, 5.0])
mse_value = mse(simulated, observed)
4.2 Root Mean Squared Error (RMSE)
The rmse function calculates the Root Mean Squared Error.
from hydutils.statistical_metrics import rmse
rmse_value = rmse(simulated, observed)
4.3 Nash-Sutcliffe Efficiency (NSE)
The nse function calculates the Nash-Sutcliffe Efficiency coefficient.
from hydutils.statistical_metrics import nse
nse_value = nse(simulated, observed)
4.4 R² (Coefficient of Determination)
The r2 function calculates the coefficient of determination, R².
from hydutils.statistical_metrics import r2
r2_value = r2(simulated, observed)
4.5 Percentage Bias (PBIAS)
The pbias function calculates the Percentage Bias between observed and simulated values.
from hydutils.statistical_metrics import pbias
pbias_value = pbias(observed, simulated)
4.6 Fractional Bias (FBIAS)
The fbias function calculates the Fractional Bias between observed and simulated values.
from hydutils.statistical_metrics import fbias
fbias_value = fbias(observed, simulated)
License
This library is released under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hydutils-2.0.0.tar.gz.
File metadata
- Download URL: hydutils-2.0.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-51-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8eaeaecd402cc653308da919ea9a309c2c169b206237bf3d8a38f90a19186ac
|
|
| MD5 |
2dc0c35ff685d0c77d1a901b5ae31ec7
|
|
| BLAKE2b-256 |
49a4da94493e79eb90be5b3e29d6cbd20c0b65faa03cd8c101a7bb60b828c831
|
File details
Details for the file hydutils-2.0.0-py3-none-any.whl.
File metadata
- Download URL: hydutils-2.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-51-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
522e67f16584c38271bd898f8ab157f52cbe76a69c64a9931bd7a2c4d2a993be
|
|
| MD5 |
cddab0b2241287111986763317ff5543
|
|
| BLAKE2b-256 |
49e290841bf3de0aeef91cb42e145c14c67b13673573a22244eb78d58c1240fc
|