Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

plot true values vs actucal vales

 plt.scatter(y_test1, y_pred_test_Forestreg)
 plt.xlabel('True Values ')
 plt.ylabel('Predictions ')
 plt.axis('equal')
 plt.axis('square')
 plt.xlim([0, plt.xlim()])
 plt.ylim([0, plt.ylim()])
 _ = plt.plot([-100, 100], [-100, 100])
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #plot #true #values #actucal #vales
ADD COMMENT
Topic
Name
6+4 =