Data manipulation, CSV handling, and DataFrame operations.
pandas==2.1.0 numpy==1.24.3 matplotlib==3.7.2
Data Loading:
pd.read_csv(), pd.read_excel(), pd.read_json()
Data Inspection:
df.head(), df.info(), df.describe()
Data Cleaning:
df.dropna(), df.fillna(), df.drop_duplicates()
Data Selection:
df.loc[], df.iloc[], df.query()