Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. let data = Frame.ReadCsv("sample.csv", hasHeaders = false, schema = "R1,R2,R3")
  2.  
  3. use file = File.OpenRead("sample.csv")
  4. using (new StreamReader(file)) ( fun reader ->
  5. while file.ReadByte() <> 10 do ()
  6. let data = Frame.ReadCsv(stream=file, schema = "R1,R2,R3", hasHeaders=true)
  7. //...
  8. )
  9.  
  10. Row1,Row2,Row3,Row4
  11. 1,2,3
  12. a,b,c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement