Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

1.7K
Visualizações
Cannot import name '_centered' from 'scipy.signal.signaltools'

Unable to import functions from scipy module.

Gives error :

from scipy.signal.signaltools import _centered
Cannot import name '_centered' from 'scipy.signal.signaltools'

scipy.__version__
1.8.0
over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

I encountered the same problem while using statsmodels~=0.12.x. Increasing the statsmodels package to version 0.13.2, this import issue is resolved.

UPDATE with more notes:

  • before:
    • installation of fixed version of statsmodels==0.12.2 which is dependent on scipy
    • there was newly released scipy==1.8.0 - 2022-02-05
      • when installing it, got this problem:
    from statsmodels.tsa.seasonal import seasonal_decompose
  File "/usr/local/lib/python3.8/site-packages/statsmodels/tsa/seasonal.py", line 12, in <module>
    from statsmodels.tsa.filters.filtertools import convolution_filter
  File "/usr/local/lib/python3.8/site-packages/statsmodels/tsa/filters/filtertools.py", line 18, in <module>
    from scipy.signal.signaltools import _centered as trim_centered
ImportError: cannot import name '_centered' from 'scipy.signal.signaltools' (/usr/local/lib/python3.8/site-packages/scipy/signal/signaltools.py)
  • after:

    • when bumping up statsmodels to the latest version available 0.13.2 release 2022-02-08, it works
  • If you are not using statsmodels but other package which is dependent on scipy, have a look if there is newer version available (after the release of scipy to v.1.8.0)

over 4 years ago · Santiago Trujillo Relatório

0

If you need to use that specific version of statsmodels 0.12.x with scipy 1.8.0 I have the following hack. Basically it just re-publishes the existing (but private) _centered function as a public attribute to the module already imported in RAM.

It is a workaround, and if you can simply upgrade your dependencies to the latest versions. Only use this if you are forced to use those specific versions.

import  scipy.signal.signaltools

def _centered(arr, newsize):
    # Return the center newsize portion of the array.
    newsize = np.asarray(newsize)
    currsize = np.array(arr.shape)
    startind = (currsize - newsize) // 2
    endind = startind + newsize
    myslice = [slice(startind[k], endind[k]) for k in range(len(endind))]
    return arr[tuple(myslice)]

scipy.signal.signaltools._centered = _centered
over 4 years ago · Santiago Trujillo Relatório

0

With scipy 1.8.0, the deprecated form

from scipy.signal.signaltools import _centered

should become

from scipy.signal._signaltools import _centered

Note the underscore in front of signaltools

over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda