You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pe = pyemu.ParameterEnsemble.from_gaussian_draw(pst=pst,num_reals=200, cov=m)
Produces:
File "C:\modelling\pyemu\pyemu\en.py", line 996, in from_gaussian_draw
df = Ensemble._gaussian_draw(
File "C:\modelling\pyemu\pyemu\en.py", line 483, in _gaussian_draw
for n in cov.names:
AttributeError: 'Matrix' object has no attribute 'names'
It seems it should be cov.row_names or cov.col_names, I'm guessing either?
The text was updated successfully, but these errors were encountered:
pe = pyemu.ParameterEnsemble.from_gaussian_draw(pst=pst,num_reals=200, cov=m)
Produces:
It seems it should be
cov.row_names
orcov.col_names
, I'm guessing either?The text was updated successfully, but these errors were encountered: