Company: Turing_21oct
Difficulty: medium
Problem Description You are provided with a dataset containing vacation rental listings and guest reviews. The dataset consists of two tables: Listings: Contains information about vacation rental listings in a city. Each row represents a single listing, including attributes of the listing and its host. Reviews: Contains guest reviews for the listings in the "Listings" table, including the date of the review and reviewer information. Your task is to complete predefined functions in seven separate Python task files. Each task addresses a specific data analysis question based on the dataset. Task 1: Neighborhood Price Difference Find the neighborhood in which superhosts have the largest absolute difference in median price compared to non-superhosts. Use the columns host_is_superhost , neighbourhood_cleansed , and price in the Listings dataset. Task 2: Correlation Analysis Identify which review score metric has the strongest correlation (absolute value) to price . Consider the following co