ankitajain commited on
Commit
c719018
1 Parent(s): 9be822d
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,12 +46,12 @@ y_pred = knn.predict(xy)
46
 
47
  #plt.pcolormesh(y_pred, cmap='jet', alpha=0.2)
48
 
49
- plt.plot(y_test[:30], "C0s", label="True Points (Test)")
50
  plt.plot(y_pred[:30], "C1*", label="Predictions (Test)")
51
  plt.xlabel("X")
52
  plt.ylabel("Y")
53
  plt.legend(loc="upper left")
54
- plt.ylim(-90,90)
55
 
56
  sns.despine(right=True, top=True)
57
 
 
46
 
47
  #plt.pcolormesh(y_pred, cmap='jet', alpha=0.2)
48
 
49
+ #plt.plot(y_test[:30], "C0s", label="True Points (Test)")
50
  plt.plot(y_pred[:30], "C1*", label="Predictions (Test)")
51
  plt.xlabel("X")
52
  plt.ylabel("Y")
53
  plt.legend(loc="upper left")
54
+ #plt.ylim(-90,90)
55
 
56
  sns.despine(right=True, top=True)
57