Update and rename Day 34_Random Forests.md to Day 34_Random_Forests.md

This commit is contained in:
AnnaGe
2018-08-11 15:29:40 +08:00
committed by GitHub
parent be80782fba
commit 6edee403ff

View File

@ -62,6 +62,11 @@ plt.ylabel('Estimated Salary')
plt.legend()
plt.show()
```
<p align="center">
<img src="https://github.com/AnnaXJGe/100-Days-Of-ML-Code/blob/master/Info-graphs/random_forest_classification_training_set.png">
</p>
## 将测试集结果可视化
```python
from matplotlib.colors import ListedColormap
@ -81,3 +86,7 @@ plt.ylabel('Estimated Salary')
plt.legend()
plt.show()
```
<p align="center">
<img src="https://github.com/AnnaXJGe/100-Days-Of-ML-Code/blob/master/Info-graphs/random_forest_classification_test_set.png">
</p>