Skip to main content

DeclusteringResult

GitHub source

DeclusteringResult

evo.compute.tasks.geostatistics.declustering.DeclusteringResult

Rich wrapper around the declustering task result.

Provides convenience properties and methods for accessing the computed declustering weights.

message

message: str

A message describing what happened in the task.

target_name

target_name: str

The name of the target object.

target_reference

target_reference: str

Reference URL to the target object.

attribute_name

attribute_name: str

The name of the attribute containing declustering weights.

schema

schema: ObjectSchema

The schema type of the target object.

get_target_object

get_target_object() -> BaseObject

Load and return the target geoscience object.

Returns: The typed geoscience object containing the declustering weights.

to_dataframe

to_dataframe(*columns: str) -> pd.DataFrame

Get the declustering weights as a DataFrame.

Args: columns: Optional column names to include. If omitted, returns all columns.

Returns: A pandas DataFrame containing the declustering weight values.

__str__

__str__() -> str

String representation.

Was this page helpful?