Sajid Sarker
Sajid Sarker
Dear Jeff (@coding-horror) > python checks failed? I made the fix and am trying again. Sorry, I was travelling and could not attend to this! I have added one new...
Dear Jeff (@coding-horror) I've gone ahead and removed the type hinting to avoid these errors altogether! Thank you very much for the review!
I have been able to make the following work: ``` import pandas as pd boston = pd.read_csv("http://lib.stat.cmu.edu/datasets/boston", sep="\s+", skiprows=22, header=None) data = np.hstack([boston.values[::2, :], boston.values[1::2, :2]]) target = boston.values[1::2, 2]...