I'm not sure why no one has reported this before, so it makes me wonder if the problem is on my end. I got stuck trying to plot the very first chart, and it took some investigation to determine that load_snp_close() was quietly failing to read any data, because of the swallowed exception TypeError: a bytes-like object is required, not 'str'.
I had to change
f = open('table.csv', 'rb').readlines()[1:]
to
f = open('table.csv', 'r').readlines()[1:]
I'm not sure why no one has reported this before, so it makes me wonder if the problem is on my end. I got stuck trying to plot the very first chart, and it took some investigation to determine that load_snp_close() was quietly failing to read any data, because of the swallowed exception TypeError: a bytes-like object is required, not 'str'.
I had to change
f = open('table.csv', 'rb').readlines()[1:]
tof = open('table.csv', 'r').readlines()[1:]
After that, the data was read as expected.