Hello, Dr. Tyler, thank you so much for your publication of script!
I found a problem in simulation_bucci_clv.py:
def adjust_concentrations(Y):
"""Change the scale of observed concentrations.
"""
con = []
for y in Y:
con += y.sum(axis=1).tolist()
con = np.array(con)
C = 1 / np.mean(con)
Y_adjusted = []
for y in Y:
Y_adjusted.append(y)
return Y_adjusted
Maybe C was neglected in Y_adjusted.append(y)?
Could you please help me to solve this problem? Thanks a lot.
Fengjie
Hello, Dr. Tyler, thank you so much for your publication of script! I found a problem in simulation_bucci_clv.py: def adjust_concentrations(Y): """Change the scale of observed concentrations. """ con = [] for y in Y: con += y.sum(axis=1).tolist() con = np.array(con) C = 1 / np.mean(con)
Maybe C was neglected in Y_adjusted.append(y)? Could you please help me to solve this problem? Thanks a lot. Fengjie