Skip to content

Instantly share code, notes, and snippets.

@rodrigols89
Created September 4, 2020 03:01
Show Gist options
  • Select an option

  • Save rodrigols89/cb35160c4ebbede538fdfda0cad6b022 to your computer and use it in GitHub Desktop.

Select an option

Save rodrigols89/cb35160c4ebbede538fdfda0cad6b022 to your computer and use it in GitHub Desktop.
Regressão
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