matrixProfiling not getting imported

562 Views Asked by At

I am trying to use the package 'matrixprofile'. I am getting the error even though I have installed a 'matrixprofile' in anaconda prompt.

from matrixprofile import *
mp = matrixProfile.stomp(df['y'].values, window)

NameError: name 'matrixProfile' is not defined

Other people have been able to use the same code.

Thanks

2

There are 2 best solutions below

0
On

No it doesn't work, I fixed it. The problem was that from anaconda prompt the command is pip install matrixprofile-ts and not pip install matrixprofile

0
On

Try:

mp = matrixprofile.stomp(df['y'].values, window)

Just replace matrixProfile with matrixprofile.