Drills tagged with this skill, unpassed first. Pass them all to mark the skill ready for scenarios.
make_scatter(df) that draws a seaborn scatter plot with ad_spend on x and sales on y, and returns the axes.
Example. sns.scatterplot(...) — the column names become the axis labels automatically.
Notes. Pass the DataFrame via data= and name the columns via x= / y=.make_trend(df) that draws a seaborn line plot of visitors over week, gives the chart a title (any wording), and returns the axes.
Example. sns.lineplot(...) then ax.set_title("Weekly Visitors").
Notes. sns.lineplot returns the axes — keep a reference so you can title it.make_segment_scatter(df) that draws a seaborn scatter of spend over visits, colored by segment using hue, and returns the axes.
Example. hue="segment" — each segment gets its own color and a legend entry.
Notes. The legend appears automatically once hue is set.