Introduction to Pandas
Which Pandas function is used to remove rows with missing values from a DataFrame?
Which operation does `df.groupby('category').mean()` perform?
What does the `df.iloc[2, 1]` statement do?
Which method is used to merge two DataFrames based on a common column?
What does `df['column'].astype(float)` do?
Which Pandas function is most suitable for quickly generating summary statistics for a DataFrame?