Complete the code to import the seaborn library as sns.
import [1] as sns
Seaborn is imported using import seaborn as sns to use its plotting functions.
Complete the code to create a seaborn scatter plot using the 'tips' dataset.
sns.scatterplot(data=tips, x='total_bill', y=[1])
The y-axis should be the 'tip' column to plot tip amounts against total bill.
Fix the error in the code to set the plot title using Matplotlib.
plt.[1]('Scatter plot of Total Bill vs Tip')
The function plt.title() sets the title of the plot.
Fill both blanks to change the x-axis label and y-axis label using Matplotlib.
plt.xlabel([1]) plt.ylabel([2])
Use plt.xlabel and plt.ylabel to set axis labels with descriptive text.
Fill all three blanks to customize the plot: set figure size, add grid, and show the plot.
plt.figure(figsize=[1]) plt.grid([2]) plt.[3]()
Use plt.figure(figsize=(8,6)) to set size, plt.grid(True) to add grid, and plt.show() to display the plot.
