Posts by L. Yeap • 1 point
2 posts
-
0
votes1
answer401
viewsA: Python mining (prediction using csv)
figured out how to do: data_prediction = pd.read_csv('teste1.csv') X_from_CSV = data_prediction.iloc[:, 1:20].values X_test_new = sc.transform(X_from_CSV) predictions =…
-
0
votes1
answer401
viewsQ: Python mining (prediction using csv)
I am now starting programming in Python language and I am studying data mining with artificial neural network. What should I do to make predictions from a . csv file? Then how to save the results in…