mirror of
https://github.com/logos-storage/das-research.git
synced 2026-01-04 22:23:08 +00:00
fix warnings on ecdfRestore row col Count
Signed-off-by: Arunima Chaudhuri <arunimachaudhuri2020@gmail.com>
This commit is contained in:
parent
49354e2ba9
commit
312ff6a1d2
@ -278,7 +278,8 @@ class Visualizor:
|
||||
plt.xlabel(conf["xlabel"])
|
||||
plt.ylabel(conf["ylabel"])
|
||||
plt.title(conf["title"])
|
||||
plt.xlim(left=0, right=max(result.restoreRowCount) * 1.1)
|
||||
max_val = max(result.restoreRowCount) * 1.1
|
||||
plt.xlim(left=0, right=max_val if max_val > 0 else 1)
|
||||
props = dict(boxstyle='round', facecolor='wheat', alpha=0.5)
|
||||
plt.text(1.05, 0.05, conf["textBox"], fontsize=10, verticalalignment='bottom', transform=plt.gca().transAxes, bbox=props)
|
||||
plt.legend(title='Node Class', labels=['Class 1 Nodes', 'Class 2 Nodes'], loc=1)
|
||||
@ -304,7 +305,8 @@ class Visualizor:
|
||||
plt.xlabel(conf["xlabel"])
|
||||
plt.ylabel(conf["ylabel"])
|
||||
plt.title(conf["title"])
|
||||
plt.xlim(left=0, right=max(result.restoreColumnCount) * 1.1)
|
||||
max_val = max(result.restoreColumnCount) * 1.1
|
||||
plt.xlim(left=0, right=max_val if max_val > 0 else 1)
|
||||
props = dict(boxstyle='round', facecolor='wheat', alpha=0.5)
|
||||
plt.text(1.05, 0.05, conf["textBox"], fontsize=10, verticalalignment='bottom', transform=plt.gca().transAxes, bbox=props)
|
||||
plt.legend(title='Node Class', labels=['Class 1 Nodes', 'Class 2 Nodes'], loc=1)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user