cmpatino commited on
Commit
01e6c2b
·
1 Parent(s): 264e408

Increase plot's font sizes

Browse files
Files changed (1) hide show
  1. app.py +10 -6
app.py CHANGED
@@ -30,15 +30,19 @@ def get_plots(min_alpha, max_alpha):
30
 
31
  ax[0].plot(alphas, coefs)
32
  ax[0].set_xscale("log")
33
- ax[0].set_xlabel("alpha")
34
- ax[0].set_ylabel("weights")
35
- ax[0].set_title("Ridge coefficients as a function of the regularization")
 
 
36
 
37
  ax[1].plot(alphas, errors)
38
  ax[1].set_xscale("log")
39
- ax[1].set_xlabel("alpha")
40
- ax[1].set_ylabel("error")
41
- ax[1].set_title("Coefficient error as a function of the regularization")
 
 
42
  fig.tight_layout()
43
 
44
  plotted_alphas_text = (
 
30
 
31
  ax[0].plot(alphas, coefs)
32
  ax[0].set_xscale("log")
33
+ ax[0].set_xlabel("alpha", fontsize=16)
34
+ ax[0].set_ylabel("weights", fontsize=16)
35
+ ax[0].set_title(
36
+ "Ridge coefficients as a function of the regularization", fontsize=20
37
+ )
38
 
39
  ax[1].plot(alphas, errors)
40
  ax[1].set_xscale("log")
41
+ ax[1].set_xlabel("alpha", fontsize=16)
42
+ ax[1].set_ylabel("error", fontsize=16)
43
+ ax[1].set_title(
44
+ "Coefficient error as a function of the regularization", fontsize=20
45
+ )
46
  fig.tight_layout()
47
 
48
  plotted_alphas_text = (