You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Numpy's loadtxt supports reading CSV files with pure floating-point values, through data = np.loadtxt('example.csv', delimiter=','). In Fortran's default data reading rules, data separated by commas or spaces is very natural. The loadtxt in stdlib supporting the argument delimiter=',' will be a practical function. This is when I use the loadtxt in stdlib to read CSV files and find that only the first column of CSV data can be read.
In this case, savetxt also needs to support the delimiter argument.