Search
 
SCRIPT & CODE EXAMPLE
 

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])
Comment

PREVIOUS NEXT
Code Example
Python :: how to perform a two-way anova with python 
Python :: downolad fileby python requests 
Python :: python how to dump exception stak 
Python :: qcombobox remove all items 
Python :: "json" is not defined 
Python :: python how to compress pytorch model 
Python :: java to python code conversion 
Python :: nunique sort 
Python :: max path limit python 
Python :: pyqt line edit mouse position change 
Python :: python time-stamp conversion 
Python :: how travel a list invertida in python 
Python :: python token stealer 
Python :: save datetime day in seperate column 
Python :: snap pdf 
Python :: put in something meaning 
Python :: reshaping a image vector/matrix 
Python :: Univariant Variable Analysis - Multiple Plots 
Python :: url encoding in python 
Python :: hide model field form 
Python :: How to Use Sets to Remove Duplicate Items in Other Data Structures 
Python :: Print feature importance per feature 
Python :: dataset to list python 
Python :: web parser python 
Python :: palindrome program in python 
Python :: How to swapcase of string in python 
Python :: pyhton transpose without changing column and row names 
Python :: datetime.timedelta 
Python :: mlpclassifier check weights 
Python :: Using iterable unpacking operator * with extend 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =