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

Fixed query_by_values so that it only accepts series and lists. #2754

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 5 additions & 14 deletions featuretools/entityset/entityset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,7 @@ def query_by_values(

Args:
dataframe_name (str): The id of the dataframe to query
instance_vals (pd.Dataframe, pd.Series, list[str] or str) :
instance_vals (pd.Series) :
Instance(s) to match.
column_name (str) : Column to query on. If None, query on index.
columns (list[str]) : Columns to return. Return all columns if None.
Expand Down Expand Up @@ -1501,7 +1501,7 @@ def query_by_values(
if instance_vals is None:
df = dataframe.copy()

elif isinstance(instance_vals, pd.Series) and instance_vals.empty:
elif instance_vals.empty:
df = dataframe.head(0)

else:
Expand Down Expand Up @@ -1681,21 +1681,12 @@ def replace(x):

def _vals_to_series(instance_vals, column_id):
"""
instance_vals may be a pd.Dataframe, a pd.Series, a list, a single
value, or None. This function always returns a Series or None.
instance_vals may be a pd.Series, a list, or None. This function always returns a Series or None.
"""
if instance_vals is None:
return None

# If this is a single value, make it a list
if not hasattr(instance_vals, "__iter__"):
instance_vals = [instance_vals]

# convert iterable to pd.Series
if isinstance(instance_vals, pd.DataFrame):
out_vals = instance_vals[column_id]
else:
out_vals = pd.Series(instance_vals)

out_vals = pd.Series(instance_vals)

# no duplicates or NaN values
out_vals = out_vals.drop_duplicates().dropna()
Expand Down