user5791460
user5791460

Reputation:

import statsmodels package returns ModuleNotFound despite correct path

I am trying to import statsmodels.stats.weightstats.DescrStatsW.tconfint_mean.

I run

from statsmodels.stats.weightstats.DescrStatsW import tconfint_mean

I get the error

ModuleNotFoundError: No module named
'statsmodels.stats.weightstats.DescrStatsW';
'statsmodels.stats.weightstats' is not a package

I have confirmed that I can import other packages from statsmodels with no problems.

I must be using the wrong path, but the docs don't specify any other path to use.

Upvotes: 0

Views: 434

Answers (1)

user5791460
user5791460

Reputation:

I just figured it out. I will leave this up for progeny.

from statsmodels.stats.weightstats import DescrStatsW

DescrStatsW.tconfint_mean(...)

Not sure why this behaves differently from other python libraries.

Upvotes: 1

Related Questions