What is the sudo equivalent of cmd?
I am trying to import a csv file.and then load it.
here is what it looks like
Thanks
What is the sudo equivalent of cmd?
I am trying to import a csv file.and then load it.
here is what it looks like
Thanks
Hi Esteban,
You need to use backtick(`) instead of apostrophe('). Also, to set the port within the process you should use \p.
q)\p 5000
q)table: (“ISI”; enlist “,”) 0: `:data.csv
q)table
a b c
-------
1 aaa 5
2 bbb 6
3 ccc 7
4 ddd 8
Regards,
Paul
AquaQ Analytics
AHA! “You need to use backtick(`) instead of apostrophe(')”
thanks Paul!