Complete the code to import the seaborn library as sns.
import [1] as sns
Seaborn is imported as sns to use its plotting functions like regplot.
Complete the code to create a scatter plot with regression line using seaborn's regplot with x='age' and y='income'.
sns.regplot(x='[1]', y='income', data=df)
The x-axis variable is 'age' to plot against 'income' on y-axis.
Fix the error in the code to show the plot after creating the regplot.
sns.regplot(x='age', y='income', data=df) plt.[1]()
Use plt.show() to display the plot after plotting.
Fill both blanks to create a regplot with data from df, plotting 'height' on x and 'weight' on y.
sns.regplot(x='[1]', y='[2]', data=df)
The x variable is 'height' and the y variable is 'weight' to plot their relationship.
Fill all three blanks to create a regplot with x='experience', y='salary', and disable the confidence interval.
sns.regplot(x='[1]', y='[2]', data=df, ci=[3]) plt.show()
Set x to 'experience', y to 'salary', and ci=False to hide the confidence interval.