This: -small refactor in print

This commit is contained in:
jakzar 2024-06-04 11:32:07 +02:00
parent 971746a0f8
commit 58e958ac44

View File

@ -18,7 +18,7 @@ class Drzewo:
def plotTree(self):
plt.figure(figsize=(20,30))
skltree.plot_tree(self.tree,filled=True,feature_names=atributes)
plt.title("Drzewo decyzyjne wytrenowane na przygotowanych danych")
plt.title("Drzewo decyzyjne wytrenowane na przygotowanych danych: ")
plt.savefig('tree.png')
#plt.show()
def makeDecision(self,values):