fork download
  1. import pandas as pd
  2. import matplotlib.pyplot as plt
  3. import seaborn as sns
  4. x=(22,25,47,52,46,56,55,60,62,61,18,28,27,29,42)
  5. y=(0,0,1,0,1,1,0,1,1,1,0,0,0,0,1)
  6. plt.scatter(x,y)
  7. xlabel=("age")
  8. ylabel=("have an insurence")
  9. plt.show()
Success #stdin #stdout 2.75s 117608KB
stdin
Standard input is empty
stdout
Standard output is empty