Posts by Matheus de Paula • 11 points
1 post
-
1
votes3
answers583
viewsA: Machine Learning Python
You need to import the data by separating the training and test data. EX: df = pd.read_csv('Data/seuarquivo.csv') previsores = df.iloc[:,0:10].values classe = df.iloc[:,4].values…