Posts by Felipe Souza • 1 point
1 post
-
0
votes1
answer1460
viewsA: Import txt files with pandas
Try the way with ".\": import pandas as pd from sklearn import linear_model import matplotlib.pyplot as plt dataframe = pd.read_fwf('.\\brain_body.txt') x_values = dataframe[['Brain']] y_values =…