I'm using Python's Jupyter Notebooks, and have been trying to import a variable called thresh_mean from another file that's in the same folder.
import scipy.io as sio
import seaborn as sns
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from firstsound import thresh_mean #this line
However, I get this error:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-42-1ee7c2613f81> in <module>
4 import pandas as pd
5 import matplotlib.pyplot as plt
----> 6 import firstsound
ModuleNotFoundError: No module named 'firstsound'
Does anyone know why this is happening and how I can go about importing that variable?