direction = array[1] - array[0] ### Ex: 4-2 = 2 so we know the direction is increasing. ### Ex: 2-4 = -2 so we know the direction is decreasing. for i in range(2, len ...
I am using Anaconda on MacOSx and have two different environments with Python2.7 and Python3.7. Everything works well except I get warning for matplotlib for Py2.7. It looks matplotlib is compatible ...