Graphs
This commit is contained in:
+4
-1
@@ -1,15 +1,18 @@
|
||||
import matplotlib.pyplot as plt
|
||||
import numpy as np
|
||||
|
||||
from lib.graphs import cr_n
|
||||
from lib.lib import read_load
|
||||
|
||||
alpha = read_load("../data/alpha")
|
||||
|
||||
cr_n(
|
||||
p, pcov = cr_n(
|
||||
alpha,
|
||||
ignore_prefix=50
|
||||
)
|
||||
|
||||
print(f"{p} {np.diag(np.sqrt(pcov))}")
|
||||
|
||||
plt.savefig('../figures/rmax-n.svg')
|
||||
plt.savefig('../figures/rmax-n.png')
|
||||
plt.show()
|
||||
|
||||
Reference in New Issue
Block a user