Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove get_pandas #594

Merged
merged 1 commit into from
Dec 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions pyiron_base/job/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,18 +381,6 @@ def get_from_table(self, path, name):
"""
return self.project_hdf5.get_from_table(path, name)

def get_pandas(self, name):
"""
Load a dictionary from the HDF5 file and display the dictionary as pandas Dataframe

Args:
name (str): HDF5 node name

Returns:
pandas.Dataframe: The dictionary is returned as pandas.Dataframe object
"""
return self.project_hdf5.get_pandas(name)

def remove(self, _protect_childs=True):
"""
Remove the job - this removes the HDF5 file, all data stored in the HDF5 file an the corresponding database entry.
Expand Down