Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def match_start_transaction_requests_with_responses(input_df: DataFrame, join_df
########## SOLUTION ##########
def match_start_transaction_requests_with_responses(input_df: DataFrame, join_df: DataFrame) -> DataFrame:
### YOUR CODE HERE
join_type: str = "inner"
join_type: str = "left"
###
return input_df.\
join(join_df, input_df.message_id == join_df.message_id, join_type).\
Expand Down