英文:
How to understand scipy.stats.genextreme shape parameter
问题
> 请注意,一些来源和软件包对于形状参数 c
的符号使用相反的约定。
这是否意味着我可以将其乘以-1,使其等同于这些其他来源中的定义?文档没有进一步展开。
英文:
The scipy.stats.genextreme
documentation states:
> Note that several sources and software packages use the opposite convention for the sign of the shape parameter c
.
Does this mean I can just multiply it by -1 and it is equivalent to the definition in these other sources. The documentation doesn't expand further.
答案1
得分: 1
是的。 作为参考,"other sources" 包括 维基百科文章,其中形状参数是 ξ。对于 SciPy,使用 c = -ξ。
英文:
> Does this mean I can just multiply it by -1 and it is equivalent to the definition in these other sources...
Yes. For reference, the "other sources" includes the wikipedia article, where the shape parameter is ξ. For SciPy, use c = -ξ.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论