(plt, x, y, x_label, y_label, title)
| 44 | |
| 45 | |
| 46 | def _draw(plt, x, y, x_label, y_label, title): |
| 47 | plt.figure(figsize=(16, 8)) |
| 48 | |
| 49 | plt.plot(x, y, alpha=0.5, lw=2) |
| 50 | |
| 51 | plt.xticks(fontsize=16) |
| 52 | plt.yticks(fontsize=16) |
| 53 | plt.grid(True) |
| 54 | plt.xlabel(x_label, fontsize=16) |
| 55 | plt.ylabel(y_label, fontsize=16) |
| 56 | plt.title(title, fontsize=20) |
| 57 | plt.show() |
| 58 | |
| 59 | |
| 60 | def create_cd( |
no outgoing calls
no test coverage detected