arviz.InferenceData.extend#

InferenceData.extend(other, join='left')[source]#

Extend InferenceData with groups from another InferenceData.

Parameters
otherInferenceData

InferenceData to be added

join{‘left’, ‘right’}, default ‘left’

Defines how the two decide which group to keep when the same group is present in both objects. ‘left’ will discard the group in other whereas ‘right’ will keep the group in other and discard the one in self.

See also

add_groups

Add new groups to InferenceData object.

concat

Concatenate InferenceData objects.