Skip to content
Snippets Groups Projects
Commit 76b78c71 authored by Richter, Manuela's avatar Richter, Manuela
Browse files

attributes

parent 336c1fed
Branches
Tags
No related merge requests found
......@@ -116,4 +116,10 @@ with pd.HDFStore(filename, "a") as hdf:
try:
dataset.to_hdf(hdf,"Berechnung")
except ValueError:
print("Gruppe existiert bereits.")
\ No newline at end of file
print("Gruppe existiert bereits.")
with h5.File(filename, "a") as hdf:
grp = hdf.get("Test")
grp_2 = hdf.get("Berechnung")
print(grp, grp_2)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment