qsospec.LocalFitResult

class qsospec.LocalFitResult(success, window_results, warnings=<factory>, metadata=<factory>)[source]

Bases: object

Result of fitting one or more independent local windows.

Parameters:
__init__(success, window_results, warnings=<factory>, metadata=<factory>)
Parameters:
Return type:

None

Methods

__init__(success, window_results[, ...])

summary()

Return a compact local-fit summary.

to_table()

Combine successful window line tables and add a window column.

warning_codes()

Return warning codes from the local result and all window results.

Attributes

success

window_results

warnings

metadata

metadata: Dict[str, Any]
success: bool
summary()[source]

Return a compact local-fit summary.

Return type:

Dict[str, Any]

to_table()[source]

Combine successful window line tables and add a window column.

warning_codes()[source]

Return warning codes from the local result and all window results.

Return type:

List[str]

warnings: List[FitWarning]
window_results: Dict[str, FitResult]