I have a dataset containing of only one column, using matplotlib I was able to do the scatter plot the following way
data = pd.read_csv
plt.scatter(data.index,data.coulumn1)
I want the same graph using seaborn but I am not sure how to implement the same approach in the following line
ax = sns.scatterplot(x="total_bill", y="tip", data=tips)