Statistics
When combining dataset, the statistics are not recomputed. Instead, the
the statistics of first dataset encounter that are returned by the
statistics
property.
You can change that behaviour by using the statistics option to select a specific dataset from which to get the statistics:
ds = open_dataset(dataset, statistics=other_dataset)
# Will return the statistics of "other_dataset"
print(ds.statistics)