paramonte._dfutils
¶
Module Contents¶
Functions¶
|
|
|
|
|
Returns a structure with components containing the properties of the |
-
paramonte._dfutils.
getMaxLogFunc
(dataFrame, column='SampleLogFunc')[source]¶ Returns a structure with components containing the properties of the input
dataFrame
, corresponding to the mode (maximum) of the data in the column of the dataFrame that is identified bycolumn
.Parameters
dataFrame
A Pandas dataframe containing the output sample data from a ParaMonte simulation.
column
A string containing the name of the column of the input
dataFrame
that contains values of the objective function (or its logarithm).Returns
maxLogFunc
A structure with the following components:
idrow
The ID of the row of
dataFrame
corresponding to the mode ofcolumn
,value
The value of
column
at maximum,dfrow
The entire row of
dataFrame
corresponding to the mode ofcolumn
,state
The location (state) within the domain of the objective function where the maximum of
column
occurs.