Get startedGet started for free

Exploring customer satisfaction

Merging datasets is a crucial skill in data analysis, especially when dealing with related data from different sources. You're working on a project for a financial institution to understand the relationship between loan approval rates and customer satisfaction. Two separate studies have been conducted: one focusing on loan approval yield based on various factors, and another on customer satisfaction under different conditions. Your task is to analyze how approval yield correlates with customer satisfaction, considering another variable such as interest rates.

The loan_approval_yield and customer_satisfaction DataFrames, pandas as pd, numpy as np, seaborn as sns, and matplotlib.pyplot as plt have been loaded for you.

This exercise is part of the course

Experimental Design in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Merge the two datasets
merged_data = pd.____(loan_approval_yield, 
                      ____, 
                      on='____')
Edit and Run Code