Merge old branches to refactor due to merge it with master #22

Merged
s481825 merged 20 commits from tree into refactor 2024-06-04 11:36:14 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 971746a0f8 - Show all commits

View File

@ -26,7 +26,7 @@ class Condition:
return random.randint(0,max-1)
def cycle(self):
if(self.clock==12):
if(self.clock==11):
self.currentTime=0
self.rain=self.setRandomRain()
self.temperature=self.setRandomTemperature()

View File

@ -16,7 +16,7 @@ class Drzewo:
self.tree=self.tree.fit(x.values,decision)
def plotTree(self):
plt.figure(figsize=(10,15))
plt.figure(figsize=(20,30))
skltree.plot_tree(self.tree,filled=True,feature_names=atributes)
plt.title("Drzewo decyzyjne wytrenowane na przygotowanych danych")
plt.savefig('tree.png')