openpathsampling.numerics.ResamplingStatistics

class openpathsampling.numerics.ResamplingStatistics(function, inputs)[source]

Contains and organizes resampled statistics.

results

the result DataFrames after applying the function

Type:

list of pandas.DataFrame

mean

DataFrame containing mean of the result DataFrames

Type:

pandas.DataFrame

std

DataFrame containing standard deviation of the result DataFrames

Type:

pandas.DataFrame

Parameters:
  • function (callable) – the function to apply the statistics to; must take one item from the list inputs and return a pandas.DataFrame

  • inputs (list) – each element of inputs is can be used as input to function

__init__(function, inputs)[source]

Methods

__init__(function, inputs)

percentile(percent)

Percentile, using Nearest Rank method.

Attributes

columns

index

mean

sorted_series

std