isotopylog.EDistribution.append¶
-
EDistribution.append(new_data)¶ Method for appending new data onto an existing EDistribution. New data can be either a single
kDistributionor a differentEDistributioninstance.Parameters: new_data (isotopylog.kDistribution or isotopylog.EDistribution) – The kDistributionorEDistributionobject containing the new data to be addedRaises: TypeError– If attempting to addnew_datathat is not an instance of eitherisotopylog.kDistributionorisotopylog.EDistribution.Examples
Adding an existing k distribution, kd, to an existing E distribution, ed:
ed.append(kd)
Adding an existing E distribution, ed2, to a different E distribution, ed1, of the same model type:
ed1.append(ed2)