Source code for openquake.hazardlib.stats

#  -*- coding: utf-8 -*-
#  vim: tabstop=4 shiftwidth=4 softtabstop=4

#  Copyright (c) 2016-2017 GEM Foundation

#  OpenQuake is free software: you can redistribute it and/or modify it
#  under the terms of the GNU Affero General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.

#  OpenQuake is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Affero General Public License for more details.

#  You should have received a copy of the GNU Affero General Public License
#  along with OpenQuake.  If not, see <http://www.gnu.org/licenses/>.
"""
Utilities to compute mean and quantile curves
"""
from __future__ import division
import numpy


[docs]def mean_curve(values, weights=None): """ Compute the mean by using numpy.average on the first axis. """ if weights is None: weights = [1. / len(values)] * len(values) if isinstance(values[0], (numpy.ndarray, list, tuple)): # fast lane return numpy.average(values, axis=0, weights=weights) return sum(value * weight for value, weight in zip(values, weights))
[docs]def quantile_curve(curves, quantile, weights=None): """ Compute the weighted quantile aggregate of a set of curves. :param curves: Array of R PoEs (possibly arrays) :param quantile: Quantile value to calculate. Should be in the range [0.0, 1.0]. :param weights: Array-like of weights, 1 for each input curve, or None :returns: A numpy array representing the quantile aggregate """ if not isinstance(curves, numpy.ndarray): curves = numpy.array(curves) R = len(curves) if weights is None: weights = numpy.ones(R) / R else: weights = numpy.array(weights) assert len(weights) == R, (len(weights), R) result = numpy.zeros(curves.shape[1:]) for idx, _ in numpy.ndenumerate(result): data = numpy.array([a[idx] for a in curves]) sorted_idxs = numpy.argsort(data) sorted_weights = weights[sorted_idxs] sorted_data = data[sorted_idxs] cum_weights = numpy.cumsum(sorted_weights) # get the quantile from the interpolated CDF result[idx] = numpy.interp(quantile, cum_weights, sorted_data) return result
# NB: this is a function linear in the array argument
[docs]def compute_stats(array, quantiles, weights): """ :param array: an array of R elements (which can be arrays) :param quantiles: a list of Q quantiles :param weights: a list of R weights :returns: an array of Q + 1 elements (which can be arrays) """ result = numpy.zeros((len(quantiles) + 1,) + array.shape[1:], array.dtype) result[0] = mean_curve(array, weights) for i, q in enumerate(quantiles, 1): result[i] = quantile_curve(array, q, weights) return result
# like compute_stats, but on a matrix of shape (N, R)
[docs]def compute_stats2(arrayNR, quantiles, weights): """ :param arrayNR: an array of (N, R) elements :param quantiles: a list of Q quantiles :param weights: a list of R weights :returns: an array of (N, Q + 1) elements """ newshape = list(arrayNR.shape) newshape[1] = len(quantiles) + 1 # number of statistical outputs newarray = numpy.zeros(newshape, arrayNR.dtype) data = [arrayNR[:, i] for i in range(len(weights))] newarray[:, 0] = apply_stat(mean_curve, data, weights) for i, q in enumerate(quantiles, 1): newarray[:, i] = apply_stat(quantile_curve, data, q, weights) return newarray
[docs]def apply_stat(f, arraylist, *extra, **kw): """ :param f: a callable arraylist -> array (of the same shape and dtype) :param arraylist: a list of arrays of the same shape and dtype :param extra: additional positional arguments :param kw: keyword arguments :returns: an array of the same shape and dtype Broadcast statistical functions to composite arrays. Here is an example: >>> dt = numpy.dtype([('a', (float, 2)), ('b', float)]) >>> a1 = numpy.array([([1, 2], 3)], dt) >>> a2 = numpy.array([([4, 5], 6)], dt) >>> apply_stat(mean_curve, [a1, a2]) array([([2.5, 3.5], 4.5)], dtype=[('a', '<f8', (2,)), ('b', '<f8')]) """ dtype = arraylist[0].dtype shape = arraylist[0].shape if dtype.names: # composite array new = numpy.zeros(shape, dtype) for name in dtype.names: new[name] = f([arr[name] for arr in arraylist], *extra, **kw) return new else: # simple array return f(arraylist, *extra, **kw)