You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a little suggestion for the use of setting index into the Dataframe, makes it easier (more beautifull) to get attributes :)
Here an exemple
a = dimap.AbstractedMetadata.dataframe
a = a[a.Name == "PASS"].Value.iat[0]
o = dimap.AbstractedMetadata.dataframe
o = o.set_index("Name")
o = o.at["PASS", "Value"]
print(a==o)
>>>True
Best,
Ari
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for your job!
Just a little suggestion for the use of setting index into the Dataframe, makes it easier (more beautifull) to get attributes :)
Here an exemple
Best,
Ari
The text was updated successfully, but these errors were encountered: