Improved comments

This commit is contained in:
2023-11-02 16:07:24 +01:00
parent 5a156d17a6
commit be1bfc8015

View File

@ -23,8 +23,8 @@
"\n", "\n",
"Since we know this file was created from a Thorsten Table's format, we can use h5lib.read_mtable_as_dataframe() to read it.\n", "Since we know this file was created from a Thorsten Table's format, we can use h5lib.read_mtable_as_dataframe() to read it.\n",
"\n", "\n",
"Then, we rename the name column as filename, as this is the column's name use to idenfify files in subsequent functions.\n", "Then, we rename the 'name' column as 'filename', as this is the column's name use to idenfify files in subsequent functions.\n",
"Also, we add to the dataframe a few categorical columns to be used as grouping variables when creating the hdf5 file's group hierarchy. " "Also, we augment the dataframe with a few categorical columns to be used as grouping variables when creating the hdf5 file's group hierarchy. "
] ]
}, },
{ {
@ -48,7 +48,10 @@
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [] "source": [
"We now create a hdf5 file with a 3-level group hierarchy based on the input_data and three grouping functions. Then\n",
"we visualize the group hierarchy of the created file as a treemap."
]
}, },
{ {
"cell_type": "code", "cell_type": "code",