NormalScoreParameters
NormalScoreParameters
evo.compute.tasks.geostatistics.normal_score.NormalScoreParameters
Parameters for the normal-score compute task.
Set method="forward" to transform from data space to Gaussian, or method="backward" to transform from Gaussian back to data space.
Example: >>> params = NormalScoreParameters( ... method="forward", ... source=Source(object=pointset_url, attribute="locations.attributes[0]"), ... target=Target( ... object=pointset_url, ... attribute=CreateAttribute(name="grade_ns"), ... ), ... distribution=distribution_url, ... )
method
method: Literal['forward', 'backward']
Transform direction: "forward" (data → Gaussian) or "backward" (Gaussian → data).
source
source: AnySourceAttribute
The source object and attribute containing values to transform.
target
target: AnyTargetAttribute
The target object and attribute to create or update with transformed values.
distribution
distribution: GeoscienceObjectReference
Reference URL to the continuous distribution object used for the transform.