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
As a user, I want to load a dataset as a pandas dataframe.
Assumptions:
A user finds the dataset they want by running this code:
f = Foundry()
datasets = f.search("DOI.123/445")
assert len(datasets) == 1
res = datasets[0].get_as_dict()
Instead of using get_as_dict(), the user wants to get the dataset as a pandas dataframe. Create a method get_as_pandas to allow the user to download the data in this format.
Acceptance Criteria
Given I know what dataset I want to use, when I specify that I want it in a pandas format, then the data downloads in the format I specified.
The text was updated successfully, but these errors were encountered:
As a user, I want to load a dataset as a pandas dataframe.
Assumptions:
A user finds the dataset they want by running this code:
Instead of using
get_as_dict()
, the user wants to get the dataset as a pandas dataframe. Create a methodget_as_pandas
to allow the user to download the data in this format.Acceptance Criteria
Given I know what dataset I want to use, when I specify that I want it in a pandas format, then the data downloads in the format I specified.
The text was updated successfully, but these errors were encountered: