Refactored according to minor changes performed to the hdf5_lib.py dependency.

This commit is contained in:
2023-11-02 15:53:33 +01:00
parent bf4d03f369
commit 5a156d17a6

View File

@ -299,13 +299,13 @@
"import pandas as pd\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"from hdf5_lib import read_hdf5_as_dataframe\n",
"from hdf5_lib import read_mtable_as_dataframe\n",
"\n",
"# Define h5 file name and make sure file is located at the current working dir\n",
"filename = 'input_files\\\\FileList.h5'\n",
"\n",
"# Read h5 file into dataframe\n",
"dataframe = read_hdf5_as_dataframe(filename)\n",
"dataframe = read_mtable_as_dataframe(filename)\n",
"\n",
"\n",
"dataframe['lastModifiedDatestr']\n",