Complete the code to import Seaborn with its common alias.
import [1] as sns
Seaborn is imported using the name 'seaborn' and commonly aliased as 'sns'.
Complete the code to create a scatter plot using Seaborn.
sns.[1](data=df, x='age', y='income')
The function scatterplot creates scatter plots showing relationships between two variables.
Fix the error in the code to show a regression line with Seaborn.
sns.lmplot(x='height', y='[1]', data=df)
The y-axis variable must be a column name like 'weight' from the data frame.
Fill both blanks to create a boxplot grouped by category.
sns.[1](x='[2]', y='score', data=df)
Use boxplot to show distributions and 'category' as the grouping variable on x-axis.
Fill all three blanks to create a dictionary comprehension that filters and maps data.
result = { [1]: [2] for k, v in data.items() if v [3] 10 }This comprehension creates a new dictionary with keys uppercased, values kept, filtering values greater than 10.