Skip to main content

BreakTiesResult

GitHub source

BreakTiesResult

evo.compute.tasks.geostatistics.break_ties.BreakTiesResult

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 that was created/updated.

schema

schema: ObjectSchema

The schema type of the target object (e.g., 'pointset').

Uses ObjectSchema.from_id to parse the schema ID.

get_target_object

get_target_object() -> BaseObject

Load and return the target geoscience object.

Returns: The typed geoscience object (e.g., PointSet, Regular3DGrid)

Example: >>> result = await run(manager, params) >>> target = await result.get_target_object()

to_dataframe

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

Get the task results as a DataFrame.

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

Returns: A pandas DataFrame containing the tie-broken attribute values.

Example: >>> result = await run(manager, params) >>> df = await result.to_dataframe() >>> df.head()

__str__

__str__() -> str

String representation.

Was this page helpful?