在哪里可以找到percentile
中numpy
函数背后的源代码?我想检查一下。我搜索过谷歌,但还没有找到任何东西。
答案 0 :(得分:13)
要在您自己的系统上找到它,请尝试inspect
:
import inspect
from numpy import percentile
inspect.getfile(percentile)
答案 1 :(得分:8)
numpy
的源代码位于Github,百分位函数可在line 3076 in lib/function_base.py上找到
答案 2 :(得分:5)
使用ipython
,您可以在函数后面添加??
(两个问号)来查看源代码,
from numpy import percentile
percentile??
答案 3 :(得分:3)
source
numpy
功能
from numpy import percentile, source
print source(percentile)
将输出源代码。