A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.xarray.dev/en/stable/user-guide/hierarchical-data.html below:

Hierarchical data

Hierarchical data# Why Hierarchical Data?#

Many real-world datasets are composed of multiple differing components, and it can often be useful to think of these in terms of a hierarchy of related groups of data. Examples of data which one might want organise in a grouped or hierarchical manner include:

or even any combination of the above.

Often datasets like this cannot easily fit into a single Dataset object, or are more usefully thought of as groups of related Dataset objects. For this purpose we provide the xarray.DataTree class.

This page explains in detail how to understand and use the different features of the DataTree class for your own hierarchical data needs.

Node Relationships# Creating a Family Tree#

The three main ways of creating a DataTree object are described briefly in Creating a DataTree. Here we go into more detail about how to create a tree node-by-node, using a famous family tree from the Simpsons cartoon as an example.

Let’s start by defining nodes representing the two siblings, Bart and Lisa Simpson:

bart = xr.DataTree(name="Bart")
lisa = xr.DataTree(name="Lisa")

Each of these node objects knows their own name, but they currently have no relationship to one another. We can connect them by creating another node representing a common parent, Homer Simpson:

homer = xr.DataTree(name="Homer", children={"Bart": bart, "Lisa": lisa})

Here we set the children of Homer in the node’s constructor. We now have a small family tree where we can see how these individual Simpson family members are related to one another:

<xarray.DataTree 'Homer'>
Group: /
├── Group: /Bart
└── Group: /Lisa

Note

We use print() above to show the compact tree hierarchy. DataTree objects also have an interactive HTML representation that is enabled by default in editors such as JupyterLab and VSCode. The HTML representation is especially helpful for larger trees and exploring new datasets, as it allows you to expand and collapse nodes. If you prefer the text representations you can also set xr.set_options(display_style="text").

The nodes representing Bart and Lisa are now connected - we can confirm their sibling rivalry by examining the siblings property:

list(homer["Bart"].siblings)

But oops, we forgot Homer’s third daughter, Maggie! Let’s add her by updating Homer’s children property to include her:

maggie = xr.DataTree(name="Maggie")
homer.children = {"Bart": bart, "Lisa": lisa, "Maggie": maggie}
print(homer)
<xarray.DataTree 'Homer'>
Group: /
├── Group: /Bart
├── Group: /Lisa
└── Group: /Maggie

Let’s check that Maggie knows who her Dad is:

That’s good - updating the properties of our nodes does not break the internal consistency of our tree, as changes of parentage are automatically reflected on both nodes.

These children obviously have another parent, Marge Simpson, but DataTree nodes can only have a maximum of one parent. Genealogical family trees are not even technically trees in the mathematical sense - the fact that distant relatives can mate makes them directed acyclic graphs. Trees of DataTree objects cannot represent this.

Homer is currently listed as having no parent (the so-called “root node” of this tree), but we can update his parent property:

abe = xr.DataTree(name="Abe")
abe.children = {"Homer": homer}

Abe is now the “root” of this tree, which we can see by examining the root property of any node in the tree

We can see the whole tree by printing Abe’s node or just part of the tree by printing Homer’s node:

<xarray.DataTree 'Abe'>
Group: /
└── Group: /Homer
    ├── Group: /Homer/Bart
    ├── Group: /Homer/Lisa
    └── Group: /Homer/Maggie
<xarray.DataTree 'Homer'>
Group: /Homer
├── Group: /Homer/Bart
├── Group: /Homer/Lisa
└── Group: /Homer/Maggie

In episode 28, Abe Simpson reveals that he had another son, Herbert “Herb” Simpson. We can add Herbert to the family tree without displacing Homer by assign()-ing another child to Abe:

herbert = xr.DataTree(name="Herb")
abe = abe.assign({"Herbert": herbert})
print(abe)
<xarray.DataTree 'Abe'>
Group: /
├── Group: /Homer
│   ├── Group: /Homer/Bart
│   ├── Group: /Homer/Lisa
│   └── Group: /Homer/Maggie
└── Group: /Herbert
print(abe["Herbert"].name)
print(herbert.name)

Note

This example shows a subtlety - the returned tree has Homer’s brother listed as "Herbert", but the original node was named “Herb”. Not only are names overridden when stored as keys like this, but the new node is a copy, so that the original node that was referenced is unchanged (i.e. herbert.name == "Herb" still). In other words, nodes are copied into trees, not inserted into them. This is intentional, and mirrors the behaviour when storing named DataArray objects inside datasets.

Certain manipulations of our tree are forbidden, if they would create an inconsistent result. In episode 51 of the show Futurama, Philip J. Fry travels back in time and accidentally becomes his own Grandfather. If we try similar time-travelling hijinks with Homer, we get a InvalidTreeError raised:

abe["Homer"].children = {"Abe": abe}
InvalidTreeError: Cannot set parent, as intended parent is already a descendant of this node.
Ancestry in an Evolutionary Tree#

Let’s use a different example of a tree to discuss more complex relationships between nodes - the phylogenetic tree, or tree of life.

vertebrates = xr.DataTree.from_dict(
    {
        "/Sharks": None,
        "/Bony Skeleton/Ray-finned Fish": None,
        "/Bony Skeleton/Four Limbs/Amphibians": None,
        "/Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Primates": None,
        "/Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Rodents & Rabbits": None,
        "/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Dinosaurs": None,
        "/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Birds": None,
    },
    name="Vertebrae",
)

primates = vertebrates["/Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Primates"]

dinosaurs = vertebrates[
    "/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Dinosaurs"
]

We have used the from_dict() constructor method as a preferred way to quickly create a whole tree, and Filesystem-like Paths (to be explained shortly) to select two nodes of interest.

<xarray.DataTree 'Vertebrae'>
Group: /
├── Group: /Sharks
└── Group: /Bony Skeleton
    ├── Group: /Bony Skeleton/Ray-finned Fish
    └── Group: /Bony Skeleton/Four Limbs
        ├── Group: /Bony Skeleton/Four Limbs/Amphibians
        └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg
            ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair
            │   ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Primates
            │   └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Rodents & Rabbits
            └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae
                ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Dinosaurs
                └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Birds

This tree shows various families of species, grouped by their common features (making it technically a “Cladogram”, rather than an evolutionary tree).

Here both the species and the features used to group them are represented by DataTree node objects - there is no distinction in types of node. We can however get a list of only the nodes we used to represent species by using the fact that all those nodes have no children - they are “leaf nodes”. We can check if a node is a leaf with is_leaf(), and get a list of all leaves with the leaves property:

print(primates.is_leaf)
[node.name for node in vertebrates.leaves]
['Sharks',
 'Ray-finned Fish',
 'Amphibians',
 'Primates',
 'Rodents & Rabbits',
 'Dinosaurs',
 'Birds']

Pretending that this is a true evolutionary tree for a moment, we can find the features of the evolutionary ancestors (so-called “ancestor” nodes), the distinguishing feature of the common ancestor of all vertebrate life (the root node), and even the distinguishing feature of the common ancestor of any two species (the common ancestor of two nodes):

print([node.name for node in reversed(primates.parents)])
print(primates.root.name)
print(primates.find_common_ancestor(dinosaurs).name)
['Vertebrae', 'Bony Skeleton', 'Four Limbs', 'Amniotic Egg', 'Hair']
Vertebrae
Amniotic Egg

We can only find a common ancestor between two nodes that lie in the same tree. If we try to find the common evolutionary ancestor between primates and an Alien species that has no relationship to Earth’s evolutionary tree, an error will be raised.

alien = xr.DataTree(name="Xenomorph")
primates.find_common_ancestor(alien)
NotFoundInTreeError: Cannot find common ancestor because nodes do not lie within the same tree
Navigating Trees#

There are various ways to access the different nodes in a tree.

Properties#

We can navigate trees using the parent and children properties of each node, for example:

lisa.parent.children["Bart"].name

but there are also more convenient ways to access nodes.

Dictionary-like interface#

Children are stored on each node as a key-value mapping from name to child node. They can be accessed and altered via the __getitem__ and __setitem__ syntax. In general DataTree objects support almost the entire set of dict-like methods, including keys(), values, items, __delitem__() and update().

print(vertebrates["Bony Skeleton"]["Ray-finned Fish"])
<xarray.DataTree 'Ray-finned Fish'>
Group: /Bony Skeleton/Ray-finned Fish

Note that the dict-like interface combines access to child DataTree nodes and stored DataArrays, so if we have a node that contains both children and data, calling keys() will list both names of child nodes and names of data variables:

dt = xr.DataTree(
    dataset=xr.Dataset({"foo": 0, "bar": 1}),
    children={"a": xr.DataTree(), "b": xr.DataTree()},
)
print(dt)
list(dt.keys())
<xarray.DataTree>
Group: /
│   Dimensions:  ()
│   Data variables:
│       foo      int64 8B 0
│       bar      int64 8B 1
├── Group: /a
└── Group: /b

This also means that the names of variables and of child nodes must be different to one another.

Attribute-like access#

You can also select both variables and child nodes through dot indexing

print(dt.foo)
print(dt.a)
<xarray.DataArray 'foo' ()> Size: 8B
array(0)
<xarray.DataTree 'a'>
Group: /a
Filesystem-like Paths#

Hierarchical trees can be thought of as analogous to file systems. Each node is like a directory, and each directory can contain both more sub-directories and data.

Note

Future development will allow you to make the filesystem analogy concrete by using open_mfdatatree() or save_mfdatatree(). (See related issue in GitHub)

Datatree objects support a syntax inspired by unix-like filesystems, where the “path” to a node is specified by the keys of each intermediate node in sequence, separated by forward slashes. This is an extension of the conventional dictionary __getitem__ syntax to allow navigation across multiple levels of the tree.

Like with filepaths, paths within the tree can either be relative to the current node, e.g.

print(abe["Homer/Bart"].name)
print(abe["./Homer/Bart"].name)  # alternative syntax

or relative to the root node. A path specified from the root (as opposed to being specified relative to an arbitrary node in the tree) is sometimes also referred to as a “fully qualified name”, or as an “absolute path”. The root node is referred to by "/", so the path from the root node to its grand-child would be "/child/grandchild", e.g.

# access lisa's sibling by a relative path.
print(lisa["../Bart"])
# or from absolute path
print(lisa["/Homer/Bart"])
<xarray.DataTree 'Bart'>
Group: /Homer/Bart
<xarray.DataTree 'Bart'>
Group: /Homer/Bart

Relative paths between nodes also support the "../" syntax to mean the parent of the current node. We can use this with __setitem__ to add a missing entry to our evolutionary tree, but add it relative to a more familiar node of interest:

primates["../../Two Fenestrae/Crocodiles"] = xr.DataTree()
print(vertebrates)
<xarray.DataTree 'Vertebrae'>
Group: /
├── Group: /Sharks
└── Group: /Bony Skeleton
    ├── Group: /Bony Skeleton/Ray-finned Fish
    └── Group: /Bony Skeleton/Four Limbs
        ├── Group: /Bony Skeleton/Four Limbs/Amphibians
        └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg
            ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair
            │   ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Primates
            │   └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Rodents & Rabbits
            └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae
                ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Dinosaurs
                ├── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Birds
                └── Group: /Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Crocodiles

Given two nodes in a tree, we can also find their relative path:

You can use this filepath feature to build a nested tree from a dictionary of filesystem-like paths and corresponding Dataset objects in a single step. If we have a dictionary where each key is a valid path, and each value is either valid data or None, we can construct a complex tree quickly using the alternative constructor from_dict():

d = {
    "/": xr.Dataset({"foo": "orange"}),
    "/a": xr.Dataset({"bar": 0}, coords={"y": ("y", [0, 1, 2])}),
    "/a/b": xr.Dataset({"zed": np.nan}),
    "a/c/d": None,
}
dt = xr.DataTree.from_dict(d)
print(dt)
<xarray.DataTree>
Group: /
│   Dimensions:  ()
│   Data variables:
│       foo      <U6 24B 'orange'
└── Group: /a
    │   Dimensions:  (y: 3)
    │   Coordinates:
    │     * y        (y) int64 24B 0 1 2
    │   Data variables:
    │       bar      int64 8B 0
    ├── Group: /a/b
    │       Dimensions:  ()
    │       Data variables:
    │           zed      float64 8B nan
    └── Group: /a/c
        └── Group: /a/c/d

Note

Notice that using the path-like syntax will also create any intermediate empty nodes necessary to reach the end of the specified path (i.e. the node labelled "/a/c" in this case.) This is to help avoid lots of redundant entries when creating deeply-nested trees using xarray.DataTree.from_dict().

Iterating over trees#

You can iterate over every node in a tree using the subtree subtree property. This returns an iterable of nodes, which yields them in depth-first order.

for node in vertebrates.subtree:
    print(node.path)
/
/Sharks
/Bony Skeleton
/Bony Skeleton/Ray-finned Fish
/Bony Skeleton/Four Limbs
/Bony Skeleton/Four Limbs/Amphibians
/Bony Skeleton/Four Limbs/Amniotic Egg
/Bony Skeleton/Four Limbs/Amniotic Egg/Hair
/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae
/Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Primates
/Bony Skeleton/Four Limbs/Amniotic Egg/Hair/Rodents & Rabbits
/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Dinosaurs
/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Birds
/Bony Skeleton/Four Limbs/Amniotic Egg/Two Fenestrae/Crocodiles

Similarly, subtree_with_keys returns an iterable of relative paths and corresponding nodes.

A very useful pattern is to iterate over subtree_with_keys to manipulate nodes however you wish, then rebuild a new tree using xarray.DataTree.from_dict(). For example, we could keep only the nodes containing data by looping over all nodes, checking if they contain any data using has_data, then rebuilding a new tree using only the paths of those nodes:

non_empty_nodes = {
    path: node.dataset for path, node in dt.subtree_with_keys if node.has_data
}
print(xr.DataTree.from_dict(non_empty_nodes))
<xarray.DataTree>
Group: /
│   Dimensions:  ()
│   Data variables:
│       foo      <U6 24B 'orange'
└── Group: /a
    │   Dimensions:  (y: 3)
    │   Coordinates:
    │     * y        (y) int64 24B 0 1 2
    │   Data variables:
    │       bar      int64 8B 0
    └── Group: /a/b
            Dimensions:  ()
            Data variables:
                zed      float64 8B nan

You can see this tree is similar to the dt object above, except that it is missing the empty nodes a/c and a/c/d.

(If you want to keep the name of the root node, you will need to add the name kwarg to from_dict, i.e. DataTree.from_dict(non_empty_nodes, name=dt.name).)

Manipulating Trees# Subsetting Tree Nodes#

We can subset our tree to select only nodes of interest in various ways.

Similarly to on a real filesystem, matching nodes by common patterns in their paths is often useful. We can use xarray.DataTree.match() for this:

dt = xr.DataTree.from_dict(
    {
        "/a/A": None,
        "/a/B": None,
        "/b/A": None,
        "/b/B": None,
    }
)
result = dt.match("*/B")
print(result)
<xarray.DataTree>
Group: /
├── Group: /a
│   └── Group: /a/B
└── Group: /b
    └── Group: /b/B

We can also subset trees by the contents of the nodes. xarray.DataTree.filter() retains only the nodes of a tree that meet a certain condition. For example, we could recreate the Simpson’s family tree with the ages of each individual, then filter for only the adults: First lets recreate the tree but with an age data variable in every node:

simpsons = xr.DataTree.from_dict(
    {
        "/": xr.Dataset({"age": 83}),
        "/Herbert": xr.Dataset({"age": 40}),
        "/Homer": xr.Dataset({"age": 39}),
        "/Homer/Bart": xr.Dataset({"age": 10}),
        "/Homer/Lisa": xr.Dataset({"age": 8}),
        "/Homer/Maggie": xr.Dataset({"age": 1}),
    },
    name="Abe",
)
print(simpsons)
<xarray.DataTree 'Abe'>
Group: /
│   Dimensions:  ()
│   Data variables:
│       age      int64 8B 83
├── Group: /Herbert
│       Dimensions:  ()
│       Data variables:
│           age      int64 8B 40
└── Group: /Homer
    │   Dimensions:  ()
    │   Data variables:
    │       age      int64 8B 39
    ├── Group: /Homer/Bart
    │       Dimensions:  ()
    │       Data variables:
    │           age      int64 8B 10
    ├── Group: /Homer/Lisa
    │       Dimensions:  ()
    │       Data variables:
    │           age      int64 8B 8
    └── Group: /Homer/Maggie
            Dimensions:  ()
            Data variables:
                age      int64 8B 1

Now let’s filter out the minors:

print(simpsons.filter(lambda node: node["age"] > 18))
<xarray.DataTree 'Abe'>
Group: /
│   Dimensions:  ()
│   Data variables:
│       age      int64 8B 83
├── Group: /Herbert
│       Dimensions:  ()
│       Data variables:
│           age      int64 8B 40
└── Group: /Homer
        Dimensions:  ()
        Data variables:
            age      int64 8B 39

The result is a new tree, containing only the nodes matching the condition.

(Yes, under the hood filter() is just syntactic sugar for the pattern we showed you in Iterating over trees !)

If you want to filter out empty nodes you can use prune().

Tree Contents# Hollow Trees#

A concept that can sometimes be useful is that of a “Hollow Tree”, which means a tree with data stored only at the leaf nodes. This is useful because certain useful tree manipulation operations only make sense for hollow trees.

You can check if a tree is a hollow tree by using the is_hollow property. We can see that the Simpson’s family is not hollow because the data variable "age" is present at some nodes which have children (i.e. Abe and Homer).

Computation#

DataTree objects are also useful for performing computations, not just for organizing data.

Operations and Methods on Trees#

To show how applying operations across a whole tree at once can be useful, let’s first create a example scientific dataset.

def time_stamps(n_samples, T):
    """Create an array of evenly-spaced time stamps"""
    return xr.DataArray(
        data=np.linspace(0, 2 * np.pi * T, n_samples), dims=["time"]
    )


def signal_generator(t, f, A, phase):
    """Generate an example electrical-like waveform"""
    return A * np.sin(f * t.data + phase)


time_stamps1 = time_stamps(n_samples=15, T=1.5)
time_stamps2 = time_stamps(n_samples=10, T=1.0)

voltages = xr.DataTree.from_dict(
    {
        "/oscilloscope1": xr.Dataset(
            {
                "potential": (
                    "time",
                    signal_generator(time_stamps1, f=2, A=1.2, phase=0.5),
                ),
                "current": (
                    "time",
                    signal_generator(time_stamps1, f=2, A=1.2, phase=1),
                ),
            },
            coords={"time": time_stamps1},
        ),
        "/oscilloscope2": xr.Dataset(
            {
                "potential": (
                    "time",
                    signal_generator(time_stamps2, f=1.6, A=1.6, phase=0.2),
                ),
                "current": (
                    "time",
                    signal_generator(time_stamps2, f=1.6, A=1.6, phase=0.7),
                ),
            },
            coords={"time": time_stamps2},
        ),
    }
)
print(voltages)
<xarray.DataTree>
Group: /
├── Group: /oscilloscope1
│       Dimensions:    (time: 15)
│       Coordinates:
│         * time       (time) float64 120B 0.0 0.6732 1.346 2.02 ... 8.078 8.752 9.425
│       Data variables:
│           potential  (time) float64 120B 0.5753 1.155 -0.06141 ... -0.8987 0.5753
│           current    (time) float64 120B 1.01 0.8568 -0.6285 ... -1.191 -0.4074 1.01
└── Group: /oscilloscope2
        Dimensions:    (time: 10)
        Coordinates:
          * time       (time) float64 80B 0.0 0.6981 1.396 2.094 ... 4.887 5.585 6.283
        Data variables:
            potential  (time) float64 80B 0.3179 1.549 1.04 ... 1.578 0.4555 -1.179
            current    (time) float64 80B 1.031 1.552 0.3297 ... 1.259 -0.3356 -1.553

Most xarray computation methods also exist as methods on datatree objects, so you can for example take the mean value of these two timeseries at once:

print(voltages.mean(dim="time"))
<xarray.DataTree>
Group: /
├── Group: /oscilloscope1
│       Dimensions:    ()
│       Data variables:
│           potential  float64 8B 0.03835
│           current    float64 8B 0.06732
└── Group: /oscilloscope2
        Dimensions:    ()
        Data variables:
            potential  float64 8B 0.169
            current    float64 8B 0.1025

This works by mapping the standard xarray.Dataset.mean() method over the dataset stored in each node of the tree one-by-one.

The arguments passed to the method are used for every node, so the values of the arguments you pass might be valid for one node and invalid for another

IndexError: index 12 is out of bounds for axis 0 with size 10
Raised whilst mapping function over node with path 'oscilloscope2'

Notice that the error raised helpfully indicates which node of the tree the operation failed on.

Arithmetic Methods on Trees#

Arithmetic methods are also implemented, so you can e.g. add a scalar to every dataset in the tree at once. For example, we can advance the timeline of the Simpsons by a decade just by

<xarray.DataTree 'Abe'>
Group: /
│   Dimensions:  ()
│   Data variables:
│       age      int64 8B 93
├── Group: /Herbert
│       Dimensions:  ()
│       Data variables:
│           age      int64 8B 50
└── Group: /Homer
    │   Dimensions:  ()
    │   Data variables:
    │       age      int64 8B 49
    ├── Group: /Homer/Bart
    │       Dimensions:  ()
    │       Data variables:
    │           age      int64 8B 20
    ├── Group: /Homer/Lisa
    │       Dimensions:  ()
    │       Data variables:
    │           age      int64 8B 18
    └── Group: /Homer/Maggie
            Dimensions:  ()
            Data variables:
                age      int64 8B 11

See that the same change (fast-forwarding by adding 10 years to the age of each character) has been applied to every node.

Mapping Custom Functions Over Trees#

You can map custom computation over each node in a tree using xarray.DataTree.map_over_datasets(). You can map any function, so long as it takes xarray.Dataset objects as one (or more) of the input arguments, and returns one (or more) xarray datasets.

For example, we can define a function to calculate the Root Mean Square of a timeseries

def rms(signal):
    return np.sqrt(np.mean(signal**2))

Then calculate the RMS value of these signals:

print(voltages.map_over_datasets(rms))
<xarray.DataTree>
Group: /
├── Group: /oscilloscope1
│       Dimensions:    ()
│       Data variables:
│           potential  float64 8B 0.8331
│           current    float64 8B 0.8602
└── Group: /oscilloscope2
        Dimensions:    ()
        Data variables:
            potential  float64 8B 1.099
            current    float64 8B 1.158

We can also use map_over_datasets() to apply a function over the data in multiple trees, by passing the trees as positional arguments.

Operating on Multiple Trees#

The examples so far have involved mapping functions or methods over the nodes of a single tree, but we can generalize this to mapping functions over multiple trees at once.

Iterating Over Multiple Trees#

To iterate over the corresponding nodes in multiple trees, use group_subtrees() instead of subtree_with_keys. This combines well with xarray.DataTree.from_dict() to build a new tree:

dt1 = xr.DataTree.from_dict({"a": xr.Dataset({"x": 1}), "b": xr.Dataset({"x": 2})})
dt2 = xr.DataTree.from_dict(
    {"a": xr.Dataset({"x": 10}), "b": xr.Dataset({"x": 20})}
)
result = {}
for path, (node1, node2) in xr.group_subtrees(dt1, dt2):
    result[path] = node1.dataset + node2.dataset
dt3 = xr.DataTree.from_dict(result)
print(dt3)
<xarray.DataTree>
Group: /
├── Group: /a
│       Dimensions:  ()
│       Data variables:
│           x        int64 8B 11
└── Group: /b
        Dimensions:  ()
        Data variables:
            x        int64 8B 22

Alternatively, you apply a function directly to paired datasets at every node using xarray.map_over_datasets():

dt3 = xr.map_over_datasets(lambda x, y: x + y, dt1, dt2)
print(dt3)
<xarray.DataTree>
Group: /
├── Group: /a
│       Dimensions:  ()
│       Data variables:
│           x        int64 8B 11
└── Group: /b
        Dimensions:  ()
        Data variables:
            x        int64 8B 22
Comparing Trees for Isomorphism#

For it to make sense to map a single non-unary function over the nodes of multiple trees at once, each tree needs to have the same structure. Specifically two trees can only be considered similar, or “isomorphic”, if the full paths to all of their descendent nodes are the same.

Applying group_subtrees() to trees with different structures raises TreeIsomorphismError:

tree = xr.DataTree.from_dict({"a": None, "a/b": None, "a/c": None})
simple_tree = xr.DataTree.from_dict({"a": None})
for _ in xr.group_subtrees(tree, simple_tree):
    ...
TreeIsomorphismError: children at node 'a' do not match: ['b', 'c'] vs []

We can explicitly also check if any two trees are isomorphic using the isomorphic() method:

tree.isomorphic(simple_tree)

Corresponding tree nodes do not need to have the same data in order to be considered isomorphic:

tree_with_data = xr.DataTree.from_dict({"a": xr.Dataset({"foo": 1})})
simple_tree.isomorphic(tree_with_data)

They also do not need to define child nodes in the same order:

reordered_tree = xr.DataTree.from_dict({"a": None, "a/c": None, "a/b": None})
tree.isomorphic(reordered_tree)
Arithmetic Between Multiple Trees#

Arithmetic operations like multiplication are binary operations, so as long as we have two isomorphic trees, we can do arithmetic between them.

currents = xr.DataTree.from_dict(
    {
        "/oscilloscope1": xr.Dataset(
            {
                "current": (
                    "time",
                    signal_generator(time_stamps1, f=2, A=1.2, phase=1),
                ),
            },
            coords={"time": time_stamps1},
        ),
        "/oscilloscope2": xr.Dataset(
            {
                "current": (
                    "time",
                    signal_generator(time_stamps2, f=1.6, A=1.6, phase=0.7),
                ),
            },
            coords={"time": time_stamps2},
        ),
    }
)
print(currents)
<xarray.DataTree>
Group: /
├── Group: /oscilloscope1
│       Dimensions:  (time: 15)
│       Coordinates:
│         * time     (time) float64 120B 0.0 0.6732 1.346 2.02 ... 8.078 8.752 9.425
│       Data variables:
│           current  (time) float64 120B 1.01 0.8568 -0.6285 ... -1.191 -0.4074 1.01
└── Group: /oscilloscope2
        Dimensions:  (time: 10)
        Coordinates:
          * time     (time) float64 80B 0.0 0.6981 1.396 2.094 ... 4.887 5.585 6.283
        Data variables:
            current  (time) float64 80B 1.031 1.552 0.3297 ... 1.259 -0.3356 -1.553
currents.isomorphic(voltages)

We could use this feature to quickly calculate the electrical power in our signal, P=IV.

power = currents * voltages
print(power)
<xarray.DataTree>
Group: /
├── Group: /oscilloscope1
│       Dimensions:  (time: 15)
│       Coordinates:
│         * time     (time) float64 120B 0.0 0.6732 1.346 2.02 ... 8.078 8.752 9.425
│       Data variables:
│           current  (time) float64 120B 1.02 0.7341 0.395 1.292 ... 1.419 0.166 1.02
└── Group: /oscilloscope2
        Dimensions:  (time: 10)
        Coordinates:
          * time     (time) float64 80B 0.0 0.6981 1.396 2.094 ... 4.887 5.585 6.283
        Data variables:
            current  (time) float64 80B 1.062 2.408 0.1087 1.594 ... 1.585 0.1126 2.412
Alignment and Coordinate Inheritance# Data Alignment#

The data in different datatree nodes are not totally independent. In particular dimensions (and indexes) in child nodes must be exactly aligned with those in their parent nodes. Exact alignment means that shared dimensions must be the same length, and indexes along those dimensions must be equal.

Note

If you were a previous user of the prototype xarray-contrib/datatree package, this is different from what you’re used to! In that package the data model was that the data stored in each node actually was completely unrelated. The data model is now slightly stricter. This allows us to provide features like Coordinate Inheritance.

To demonstrate, let’s first generate some example datasets which are not aligned with one another:

# (drop the attributes just to make the printed representation shorter)
ds = xr.tutorial.open_dataset("air_temperature").drop_attrs()

ds_daily = ds.resample(time="D").mean("time")
ds_weekly = ds.resample(time="W").mean("time")
ds_monthly = ds.resample(time="ME").mean("time")

These datasets have different lengths along the time dimension, and are therefore not aligned along that dimension.

print(ds_daily.sizes)
print(ds_weekly.sizes)
print(ds_monthly.sizes)
Frozen({'time': 730, 'lat': 25, 'lon': 53})
Frozen({'time': 105, 'lat': 25, 'lon': 53})
Frozen({'time': 24, 'lat': 25, 'lon': 53})

We cannot store these non-alignable variables on a single Dataset object, because they do not exactly align:

xr.align(ds_daily, ds_weekly, ds_monthly, join="exact")
AlignmentError: cannot align objects with join='exact' where index/labels/sizes are not equal along these coordinates (dimensions): 'time' ('time',)

But we previously said that multi-resolution data is a good use case for DataTree, so surely we should be able to store these in a single DataTree? If we first try to create a DataTree with these different-length time dimensions present in both parents and children, we will still get an alignment error:

xr.DataTree.from_dict({"daily": ds_daily, "daily/weekly": ds_weekly})
ValueError: group '/daily/weekly' is not aligned with its parents:
Group:
    Dimensions:  (time: 105, lat: 25, lon: 53)
    Coordinates:
      * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
      * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
      * time     (time) datetime64[ns] 840B 2013-01-06 2013-01-13 ... 2015-01-04
    Data variables:
        air      (time, lat, lon) float64 1MB 245.3 245.2 245.0 ... 296.6 296.2
From parents:
    Dimensions:  (time: 730, lat: 25, lon: 53)
    Coordinates:
      * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
      * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
      * time     (time) datetime64[ns] 6kB 2013-01-01 2013-01-02 ... 2014-12-31

This is because DataTree checks that data in child nodes align exactly with their parents.

This alignment check is performed up through the tree, all the way to the root, and so is therefore equivalent to requiring that this align() command succeeds:

xr.align(child.dataset, *(parent.dataset for parent in child.parents), join="exact")

To represent our unalignable data in a single DataTree, we must instead place all variables which are a function of these different-length dimensions into nodes that are not direct descendents of one another, e.g. organize them as siblings.

dt = xr.DataTree.from_dict(
    {"daily": ds_daily, "weekly": ds_weekly, "monthly": ds_monthly}
)
print(dt)
<xarray.DataTree>
Group: /
├── Group: /daily
│       Dimensions:  (time: 730, lat: 25, lon: 53)
│       Coordinates:
│         * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
│         * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
│         * time     (time) datetime64[ns] 6kB 2013-01-01 2013-01-02 ... 2014-12-31
│       Data variables:
│           air      (time, lat, lon) float64 8MB 241.9 242.3 242.7 ... 295.9 295.5
├── Group: /weekly
│       Dimensions:  (time: 105, lat: 25, lon: 53)
│       Coordinates:
│         * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
│         * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
│         * time     (time) datetime64[ns] 840B 2013-01-06 2013-01-13 ... 2015-01-04
│       Data variables:
│           air      (time, lat, lon) float64 1MB 245.3 245.2 245.0 ... 296.6 296.2
└── Group: /monthly
        Dimensions:  (time: 24, lat: 25, lon: 53)
        Coordinates:
          * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
          * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
          * time     (time) datetime64[ns] 192B 2013-01-31 2013-02-28 ... 2014-12-31
        Data variables:
            air      (time, lat, lon) float64 254kB 244.5 244.7 244.7 ... 297.7 297.7

Now we have a valid DataTree structure which contains all the data at each different time frequency, stored in a separate group.

This is a useful way to organise our data because we can still operate on all the groups at once. For example we can extract all three timeseries at a specific lat-lon location:

dt_sel = dt.sel(lat=75, lon=300)
print(dt_sel)
<xarray.DataTree>
Group: /
├── Group: /daily
│       Dimensions:  (time: 730)
│       Coordinates:
│           lat      float32 4B 75.0
│           lon      float32 4B 300.0
│         * time     (time) datetime64[ns] 6kB 2013-01-01 2013-01-02 ... 2014-12-31
│       Data variables:
│           air      (time) float64 6kB 242.7 245.6 244.9 249.8 ... 254.8 255.6 256.8
├── Group: /weekly
│       Dimensions:  (time: 105)
│       Coordinates:
│           lat      float32 4B 75.0
│           lon      float32 4B 300.0
│         * time     (time) datetime64[ns] 840B 2013-01-06 2013-01-13 ... 2015-01-04
│       Data variables:
│           air      (time) float64 840B 247.2 251.7 256.2 261.4 ... 249.8 248.2 255.7
└── Group: /monthly
        Dimensions:  (time: 24)
        Coordinates:
            lat      float32 4B 75.0
            lon      float32 4B 300.0
          * time     (time) datetime64[ns] 192B 2013-01-31 2013-02-28 ... 2014-12-31
        Data variables:
            air      (time) float64 192B 254.0 252.8 256.9 258.7 ... 265.1 261.8 251.7

or compute the standard deviation of each timeseries to find out how it varies with sampling frequency:

dt_std = dt.std(dim="time")
print(dt_std)
<xarray.DataTree>
Group: /
├── Group: /daily
│       Dimensions:  (lat: 25, lon: 53)
│       Coordinates:
│         * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
│         * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
│       Data variables:
│           air      (lat, lon) float64 11kB 11.63 11.57 11.57 ... 1.715 1.82 1.899
├── Group: /weekly
│       Dimensions:  (lat: 25, lon: 53)
│       Coordinates:
│         * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
│         * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
│       Data variables:
│           air      (lat, lon) float64 11kB 11.29 11.22 11.21 ... 1.651 1.744 1.818
└── Group: /monthly
        Dimensions:  (lat: 25, lon: 53)
        Coordinates:
          * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
          * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
        Data variables:
            air      (lat, lon) float64 11kB 10.8 10.75 10.76 ... 1.608 1.693 1.763
Coordinate Inheritance#

Notice that in the trees we constructed above there is some redundancy - the lat and lon variables appear in each sibling group, but are identical across the groups.

<xarray.DatasetView> Size: 0B
Dimensions:  ()
Data variables:
    *empty*

We can use “Coordinate Inheritance” to define them only once in a parent group and remove this redundancy, whilst still being able to access those coordinate variables from the child groups.

Let’s instead place only the time-dependent variables in the child groups, and put the non-time-dependent lat and lon variables in the parent (root) group:

dt = xr.DataTree.from_dict(
    {
        "/": ds.drop_dims("time"),
        "daily": ds_daily.drop_vars(["lat", "lon"]),
        "weekly": ds_weekly.drop_vars(["lat", "lon"]),
        "monthly": ds_monthly.drop_vars(["lat", "lon"]),
    }
)
dt
<xarray.DatasetView> Size: 312B
Dimensions:  (lat: 25, lon: 53)
Coordinates:
  * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
  * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
Data variables:
    *empty*

This is preferred to the previous representation because it now makes it clear that all of these datasets share common spatial grid coordinates. Defining the common coordinates just once also ensures that the spatial coordinates for each group cannot become out of sync with one another during operations.

We can still access the coordinates defined in the parent groups from any of the child groups as if they were actually present on the child groups:

Coordinates:
  * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
  * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
  * time     (time) datetime64[ns] 6kB 2013-01-01 2013-01-02 ... 2014-12-31
<xarray.DataArray 'lat' (lat: 25)> Size: 100B
array([75. , 72.5, 70. , 67.5, 65. , 62.5, 60. , 57.5, 55. , 52.5, 50. , 47.5,
       45. , 42.5, 40. , 37.5, 35. , 32.5, 30. , 27.5, 25. , 22.5, 20. , 17.5,
       15. ], dtype=float32)
Coordinates:
  * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0

As we can still access them, we say that the lat and lon coordinates in the child groups have been “inherited” from their common parent group.

If we print just one of the child nodes, it will still display inherited coordinates, but explicitly mark them as such:

<xarray.DatasetView> Size: 8MB
Dimensions:  (lat: 25, lon: 53, time: 730)
Coordinates:
  * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
  * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
  * time     (time) datetime64[ns] 6kB 2013-01-01 2013-01-02 ... 2014-12-31
Data variables:
    air      (time, lat, lon) float64 8MB 241.9 242.3 242.7 ... 295.9 295.5

This helps to differentiate which variables are defined on the datatree node that you are currently looking at, and which were defined somewhere above it.

We can also still perform all the same operations on the whole tree:

dt.sel(lat=[75], lon=[300])
<xarray.DatasetView> Size: 8B
Dimensions:  (lat: 1, lon: 1)
Coordinates:
  * lat      (lat) float32 4B 75.0
  * lon      (lon) float32 4B 300.0
Data variables:
    *empty*
<xarray.DatasetView> Size: 312B
Dimensions:  (lat: 25, lon: 53)
Coordinates:
  * lat      (lat) float32 100B 75.0 72.5 70.0 67.5 65.0 ... 22.5 20.0 17.5 15.0
  * lon      (lon) float32 212B 200.0 202.5 205.0 207.5 ... 325.0 327.5 330.0
Data variables:
    *empty*

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4