This project performs Exploratory Data Analysis (EDA) on the Titanic dataset using Python. The aim is to clean the dataset, explore passenger information, and analyze the factors that influenced ...
import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns df = pd.read_csv("Global_Music_Streaming_Listener_Preferences.csv") df ...