Skip to main content

DeviationAnalysisStatistics

Other

Statistics for deviation analyses.

Import

import ScriptingApi as api

# Access the class
# DeviationAnalysisStatistics is available via api.DeviationAnalysisStatistics

Properties

min_value

Minimum measured distance between actual and reference objects.

Type: float


max_value

Maximum measured distance between actual and reference objects.

Type: float


mean_value

Mean deviation across all sampled points.

Type: float


std_deviation

Standard deviation of deviations across all sampled points.

Type: float


min_point_a

Location on the actual object for the minimum deviation.

Type: list


min_point_b

Corresponding location on the reference object for the minimum deviation.

Type: list


max_point_a

Location on the actual object for the maximum deviation.

Type: list


max_point_b

Corresponding location on the reference object for the maximum deviation.

Type: list


area_within_range

Surface area whose deviation lies within the specified range.

Type: float


area_below_range

Surface area whose deviation is below the specified range.

Type: float


area_above_range

Surface area whose deviation is above the specified range.

Type: float


total_area

Total analyzed surface area.

Type: float


percentage_within_range

Percentage of surface area whose deviation lies within the range.

Type: float


percentage_below_range

Percentage of surface area whose deviation is below the range.

Type: float


percentage_above_range

Percentage of surface area whose deviation is above the range.

Type: float


mean_within_range

Mean deviation considering only samples within the specified range.

Type: float


std_deviation_within_range

Standard deviation of deviation considering only samples within the specified range.

Type: float


See Also