發表文章

目前顯示的是 1月 18, 2019的文章

Scatter plot is not sort in matplotlib from csv file

圖片
-1 My Code: import pandas as pd import matplotlib.pyplot as plt df=pd.read_csv("linear_regression_dataset.csv", sep=";") plt.scatter(df.Deneyim,df.Maas) plt.xlabel("deneyim") plt.ylabel("maas") plt.show() result image : Is there a solution proposal? That's the graphic I want to be image: python-3.x matplotlib share | improve this question edited Nov 14 '18 at 12:58 Burak MAKAV asked Nov 14 '18 at 8:56 Burak MAK