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
As you have discovered, the entire set of code related to SALib is very outdated. I haven't used it or worked on it in years. I cannot recommend using anything other than the default Monte Carlo methods at this time.
Please understand that I have no funding for further work on pygcam, so the only features that get added at this point are those that I require for my own work. I use pygcam in all my ongoing work with GCAM, but I do not use every feature, and I work only on the Mac and Linux platforms. I rarely do testing on Windows. My current work involves a custom version based on GCAMv5.3, and I haven't had opportunity to use 6.0 yet.
I'd be happy to develop / complete new features if funding were available.
Trying to run MCS analysis, but
gt
complains:'DataFrame' object has no attribute 'as_matrix'
This appears to have been deprecated since 0.23.0.
'bounds' : data.as_matrix(columns=['low','high']),
->'bounds' : data[['low','high']].to_numpy(),
self.results = self.resultsDF[resultName].as_matrix()
->self.results = self.resultsDF[resultName].to_numpy()
The text was updated successfully, but these errors were encountered: