get_mesh_agree_aggr: Aggregate agreement measures for 3D mesh pairs

View source: R/functions.R

get_mesh_agree_aggrR Documentation

Aggregate agreement measures for 3D mesh pairs

Description

Aggregates the agreement measures calculated for pairs of 3D meshes.

Usage

get_mesh_agree_aggr(x, na.rm=FALSE)

Arguments

x

data.frame with agreement measures as returned by get_mesh_agree.

na.rm

logical. Remove missings before calculating statistical measures?

Value

data.frame with the following variables:

group

The grouping variable indicating which pairs belong to the same structure.

metric

The calculated agreement measure.

Mean

The arithmetic mean over mesh pairs.

Median

The median over mesh pairs.

SD

The standard deviation over mesh pairs.

CV

The coefficient of variation calculated as SD/Mean.

CV_ln

The coefficient of variation calculated assuming log-normality.

See Also

get_mesh_agree

Examples

heartL       <- mesh3dL_to_cgalMeshL(data_heart_obsL)
d_agree_pair <- get_mesh_agree(heartL, do_ui=FALSE)
get_mesh_agree_aggr(d_agree_pair)

MeshAgreement documentation built on Nov. 25, 2022, 5:05 p.m.