Skip to main content

KrigingMethod

GitHub source

KrigingMethod

evo.compute.tasks.kriging.KrigingMethod

Factory for kriging methods.

Provides convenient access to kriging method types.

Example: >>> # Use ordinary kriging (most common) >>> method = KrigingMethod.ORDINARY >>> >>> # Use simple kriging with known mean >>> method = KrigingMethod.simple(mean=100.0)

ORDINARY

ORDINARY: OrdinaryKriging = OrdinaryKriging()

Ordinary kriging - estimates local mean from nearby samples.

simple

simple(mean: float) -> SimpleKriging

Create a simple kriging method with the given mean.

Args: mean: The known constant mean value across the domain.

Returns: SimpleKriging instance configured with the given mean.

What is the reason for your feedback?