0
Using python 3.6.5
import numpy as np
valores = np.genfromtxt("arquivo.csv",delimiter = ";",skip_header = 1)
print(valores)
CSV file.:
Valores1,Valores2,Valores3
10,20,30
40,50,60
70,80,90
34,54,23
Exit:
array([nan, nan, nan, nan])
What’s going on?
It has nothing to do with passing your delimiter as
;
and the CSV has as delimiter,
?– Pedro von Hertwig Batista
@Pedro von Hertwig: Thank you! I will test!
– Ed S