MPAS-JEDI
|
Functions | |
def | calcStats (array_f) |
def | write_stats_nc (statSpace, statsDict) |
def | read_stats_nc (statsFile) |
def | aggStatsDF (x) |
def | aggStatsDict (x_) |
def | identityFunc (x) |
def | rmsFunc (x, axis=0) |
def | bootStrapVector (X, alpha=0.05, n_samples=8000, weights=None) |
def | bootStrapVectorRMSFunc (X, Y, statFunc=np.subtract, alpha=0.05, n_samples=8000) |
def | bootStrapAggRMSFunc (X, Y, Ns, statFunc=np.subtract, alpha=0.05, n_samples=8000) |
def | bootStrapVectorFunc (X, Y, alpha=0.05, n_samples=5000, vecFuncs=[identityFunc], bootFuncs=[bootStrapVector], statFunc=np.subtract) |
def | bootStrapClusterFunc (X, Y, alpha=0.05, n_samples=5000, statFunc=np.subtract, statNames=sampleableAggStats) |
Variables | |
_logger = logging.getLogger(__name__) | |
rKindStore = np.float32 | |
string | rKindNC = 'f4' |
rKindCompute = np.float64 | |
ddof = int(0) | |
list | aggregatableFileStats = ['Count','Mean','MS','RMS','STD','Min','Max'] |
list | allFileStats = aggregatableFileStats |
dictionary | statDtypes |
dictionary | statDtypesCompute |
list | sampleableAggStats = ['Count','Mean','MS','RMS'] |
list | fileStatAttributes |
string | statsFilePrefix = 'stats_' |
string | cimean = 'VALUE' |
string | cimin = 'LO' |
string | cimax = 'HI' |
list | ciTraits = [cimean, cimin, cimax] |
def stat_utils.aggStatsDF | ( | x | ) |
def stat_utils.aggStatsDict | ( | x_ | ) |
def stat_utils.bootStrapAggRMSFunc | ( | X, | |
Y, | |||
Ns, | |||
statFunc = np.subtract , |
|||
alpha = 0.05 , |
|||
n_samples = 8000 |
|||
) |
def stat_utils.bootStrapClusterFunc | ( | X, | |
Y, | |||
alpha = 0.05 , |
|||
n_samples = 5000 , |
|||
statFunc = np.subtract , |
|||
statNames = sampleableAggStats |
|||
) |
def stat_utils.bootStrapVector | ( | X, | |
alpha = 0.05 , |
|||
n_samples = 8000 , |
|||
weights = None |
|||
) |
def stat_utils.bootStrapVectorFunc | ( | X, | |
Y, | |||
alpha = 0.05 , |
|||
n_samples = 5000 , |
|||
vecFuncs = [identityFunc] , |
|||
bootFuncs = [bootStrapVector] , |
|||
statFunc = np.subtract |
|||
) |
Definition at line 412 of file stat_utils.py.
def stat_utils.bootStrapVectorRMSFunc | ( | X, | |
Y, | |||
statFunc = np.subtract , |
|||
alpha = 0.05 , |
|||
n_samples = 8000 |
|||
) |
def stat_utils.calcStats | ( | array_f | ) |
Definition at line 74 of file stat_utils.py.
def stat_utils.identityFunc | ( | x | ) |
Definition at line 230 of file stat_utils.py.
def stat_utils.read_stats_nc | ( | statsFile | ) |
Definition at line 129 of file stat_utils.py.
def stat_utils.rmsFunc | ( | x, | |
axis = 0 |
|||
) |
def stat_utils.write_stats_nc | ( | statSpace, | |
statsDict | |||
) |
Definition at line 101 of file stat_utils.py.
|
private |
Definition at line 10 of file stat_utils.py.
list stat_utils.aggregatableFileStats = ['Count','Mean','MS','RMS','STD','Min','Max'] |
Definition at line 40 of file stat_utils.py.
list stat_utils.allFileStats = aggregatableFileStats |
Definition at line 42 of file stat_utils.py.
string stat_utils.cimax = 'HI' |
Definition at line 226 of file stat_utils.py.
string stat_utils.cimean = 'VALUE' |
Definition at line 224 of file stat_utils.py.
string stat_utils.cimin = 'LO' |
Definition at line 225 of file stat_utils.py.
Definition at line 227 of file stat_utils.py.
stat_utils.ddof = int(0) |
Definition at line 36 of file stat_utils.py.
list stat_utils.fileStatAttributes |
Definition at line 67 of file stat_utils.py.
stat_utils.rKindCompute = np.float64 |
Definition at line 25 of file stat_utils.py.
string stat_utils.rKindNC = 'f4' |
Definition at line 18 of file stat_utils.py.
stat_utils.rKindStore = np.float32 |
Definition at line 17 of file stat_utils.py.
list stat_utils.sampleableAggStats = ['Count','Mean','MS','RMS'] |
Definition at line 65 of file stat_utils.py.
dictionary stat_utils.statDtypes |
Definition at line 44 of file stat_utils.py.
dictionary stat_utils.statDtypesCompute |
Definition at line 54 of file stat_utils.py.
string stat_utils.statsFilePrefix = 'stats_' |
Definition at line 70 of file stat_utils.py.