concat

Concatenate multiple Daf data sets along some axis. See the Julia documentation for details.

dafpy.concat. concatenate ( destination : DafWriter , axis : str | Sequence [ str ] , sources : Sequence [ DafReader ] , names : Sequence [ str ] | None = None , dataset_axis : str | None = 'dataset' , dataset_property : bool | None = None , prefix : bool | Sequence [ bool ] | None = None , prefixed : AbstractSet [ str ] | Sequence [ AbstractSet [ str ] ] | None = None , empty : Mapping [ str | Tuple [ str , str ] | Tuple [ str , str , str ] | Tuple [ str , str , str , str ] , bool | int | float | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | float32 | float64 | str ] | None = None , sparse_if_saves_storage_fraction : float | None = None , merge : Mapping [ str | Tuple [ str , str ] | Tuple [ str , str , str ] , MergeAction ] | None = None , overwrite : bool | None = None ) None [source]

Concatenate data from a sources sequence of Daf data sets into a single destination data set along one or more concatenation axis . See the Julia documentation for details.

class dafpy.concat. MergeAction ( value ) [source]

The action for merging the values of a property from the concatenated data sets into the result data set. See the Julia documentation for details.

SkipProperty = 'SkipProperty'

Do not include the property in the result.

LastValue = 'LastValue'

Use the value from the last concatenated data set.

CollectAxis = 'CollectAxis'

Collect the values along the concatenation axis.