From 7056db6fc307552ad56292fdc90e014b0097f50b Mon Sep 17 00:00:00 2001 From: Martin Fitzner Date: Fri, 10 Jan 2025 16:32:16 +0100 Subject: [PATCH] Add note --- baybe/utils/dataframe.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/baybe/utils/dataframe.py b/baybe/utils/dataframe.py index 5cc3cda98..ea08a4317 100644 --- a/baybe/utils/dataframe.py +++ b/baybe/utils/dataframe.py @@ -485,6 +485,11 @@ def fuzzy_row_match( Raises: ValueError: If some rows are present in the right but not in the left dataframe. + + Note: + This function assumes that the dataframes contain only allowed values as + specified in the parameter objects. No further validation to assert this is + done. """ # Assert that all parameters appear in the given dataframe if not all(col in right_df.columns for col in left_df.columns):