API reference
earthcarekit.stats
Statistical utility functions.
nan_diff_of_means
Difference between means of target and prediction (i.e., mean(target) - mean(prediction)).
Source code in earthcarekit/utils/statistics.py
nan_mae
Mean absolute error (MAE)
Source code in earthcarekit/utils/statistics.py
nan_max
Compute the maximum while ignoring NaNs.
Source code in earthcarekit/utils/statistics.py
nan_mean
Compute the mean while ignoring NaNs.
Source code in earthcarekit/utils/statistics.py
nan_mean_diff
Mean of element-wise differences (i.e., mean(target - prediction)).
Source code in earthcarekit/utils/statistics.py
nan_min
Compute the minimum while ignoring NaNs.
Source code in earthcarekit/utils/statistics.py
nan_rmse
Root mean squared error (RMSE)
Source code in earthcarekit/utils/statistics.py
nan_sem
Compute the standard error of the mean while ignoring NaNs.
Source code in earthcarekit/utils/statistics.py
nan_std
Compute the standard deviation while ignoring NaNs.