I'm using PyCharm as my editor and seemingly it doesn't behave well with certain sub-modules namely numpy.random.normal. Not to be disheartened I tracked down where numpy.random lives to /usr/lib/python2.7/dist-packages/numpy/random.
I can't see any instance of normal. There's the definition for it in __init__.py but no actual code for me to copy into a new class for my project.
Am I looking in the wrong place for the code?
noise = numpy.random.normal(0, power_noise, len(self.data))it tells me it cannot find the reference. If I open a terminal, however, I can use the normal function as I desire.