Skip to content

ModelFinderResult

piqtree.ModelFinderResult(source, raw_data) dataclass

Data returned by ModelFinder.

ATTRIBUTE DESCRIPTION
source

Source of the alignment.

TYPE: str

raw_data

Raw data returned by ModelFinder.

TYPE: dict[str, Any]

best_aic

The best AIC model.

TYPE: Model

best_aicc

The best AICc model.

TYPE: Model

best_bic

The best BIC model.

TYPE: Model

model_stats

Semi-processed representation of raw_data.

TYPE: dict[Model | str, ModelResultValue]

Usage

For usage, see "Find the model of best fit with ModelFinder".