Step 01
Load & inspect the data
Start with a single CSV. Skim shape, dtypes, and missingness before you write a single line of feature code. The first 10 minutes save the next 10 hours.
import pandas as pd
df = pd.read_csv("subscribers.csv")
print(df.shape, df.dtypes)
df.describe(include="all").T