VS代码Python不会自动补全scipy.stats

VS Code python doesn#39;t autocomplete scipy.stats(VS代码Python不会自动补全scipy.stats)
本文介绍了VS代码Python不会自动补全scipy.stats的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

scipyt.stats中我们有变量binom 不知何故,vscode中的自动完成功能似乎没有找到它。 在pycharm中,自动补全功能运行良好。为什么会这样呢?有什么建议吗? 还提供了一些Binom的示例代码,如下所示 from scipy.stats import binom; binom.rvs(10,0.5,size=12)

推荐答案

这是scipy.stats包下的__init__.py文件:

from .stats import *
from .distributions import *

from .morestats import *
from ._binomtest import binomtest
from ._binned_statistic import *
from .kde import gaussian_kde
from . import mstats
from . import qmc
from ._multivariate import *
from . import contingency
from .contingency import chi2_contingency
from ._bootstrap import bootstrap
from ._entropy import *
from ._hypotests import *
from ._rvs_sampling import rvs_ratio_uniforms, NumericalInverseHermite
from ._page_trend_test import page_trend_test
from ._mannwhitneyu import mannwhitneyu

__all__ = [s for s in dir() if not s.startswith("_")]  # Remove dunders.

from scipy._lib._testutils import PytestTester

test = PytestTester(__name__)
del PytestTester
它不包含:from ._discrete_distns import binom。因此,Pylance不会在建议列表中提示它。

您可以通过:from scipy.stats._discrete_distns import binom如上面建议的bwdm导入。

这篇关于VS代码Python不会自动补全scipy.stats的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)