79697644

Date: 2025-07-10 22:15:18
Score: 1
Natty:
Report link

As an update and to complement Alex's answer, this option is not working properly using seaborn

sns.scatterplot(
    data=tips,
    x="total_bill",
    y="tip",
    c=kernel,
    cmap="viridis",
    ax=ax,
)

Use instead:

  plt.scatter(tips["total_bill"], tips["tip"], c=kernel, cmap='viridis')
Reasons:
  • Blacklisted phrase (0.5): not working properly
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luis Lizcano