Skip to content
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
10 changes: 10 additions & 0 deletions src/hyperactive/hyperactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,16 @@ def search_data(self, id_, times=False):

Returns:
- pd.DataFrame: The search data for the specified ID.

columns are

* "score" : float - The score of the search
* "n_columns" : int - The number of columns in the search space
* "metadata" : dict - The metadata returned by the search

each row is a search iteration

index is RangeIndex
"""

search_data_ = self.results_.search_data(id_)
Expand Down
Loading