Hi Totally new to Julia and was wondering howto get data from a csv or text file where I can use that data in a graph. Assume that...... 1,2,3,4 . is saved in g.txt and I open and print the data from "g" as per the following;
g = open("g.txt","r")
print(readall(g))
close(g)
................................ how can I get "g" converted to a list eg
[1,2,3,4] ??
Regards
P
