DeprecationWarning: `salib.sample.saltelli` will be removed in SALib 1.5. Please use `salib.sample.sobol` param_values = saltelli.sample(problem,1024)
时间: 2024-02-20 16:00:31 浏览: 323
灵敏度分析:使用SALib库进行全局灵敏度分析以评估模型输入变量对输出的影响
这个警告是因为在 SALib 1.5 版本中,`saltelli.sample` 方法将被移除,建议使用 `sobol.sample` 方法代替。如果你想继续使用 `saltelli.sample` 方法,可以在调用该方法之前加上以下代码,来忽略 DeprecationWarning 警告:
```
import warnings
warnings.filterwarnings('ignore', category=DeprecationWarning)
```
但是建议还是尽早修改代码,使用新的 `sobol.sample` 方法,以便更好地适应 SALib 的更新和发展。
阅读全文