Created
September 4, 2020 03:01
-
-
Save rodrigols89/cb35160c4ebbede538fdfda0cad6b022 to your computer and use it in GitHub Desktop.
Regressão
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| with open('../datasets/Galton_Dataset.txt', 'r') as f: | |
| data = pd.read_table(f, sep='\s+') | |
| print(data.head(10)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment