In PyQ I can create a dictionary and transpose it with flip to get a table...
q.set(':alpha', q('!', ["Name", "Ask", "Bid", "Time"], ()).flip)
However, as expected, when I load it in q and retrieve the meta data it shows the char type for all of the columns as symbols...
>>> q.get(':alpha').show()
Name Ask Bid Time
---------------------------------------------------------------
"BTC" "16351.0" "16350.0" "2017-12-12T17:32:33.09"
"ETH" "589.89999993" "585.25" "2017-12-12T17:32:32.697"
"LTC" "297.0" "296.29570358" "2017-12-12T17:32:32.353"
"BTC" "16355.0" "16351.0" "2017-12-12T17:32:44.777"
"ETH" "589.89999993" "585.25" "2017-12-12T17:32:42.15"
"LTC" "297.99940398" "296.29570359" "2017-12-12T17:32:44.433"
"BTC" "16359.99999998" "16350.0" "2017-12-12T17:32:53.713"
"ETH" "589.89999993" "585.2500001" "2017-12-12T17:32:53.197"
"LTC" "297.99940398" "295.0" "2017-12-12T17:32:51.37"
"BTC" "16355.0" "16350.0" "2017-12-12T17:33:02.433"
"ETH" "585.2500001" "585.25" "2017-12-12T17:33:03.497"
"LTC" "297.99940397" "295.0" "2017-12-12T17:33:01.463"
>>> q()
q)\l alpha
`alpha
q)meta alpha
c | t f a
----| -----
Name| s
Ask | s
Bid | s
Time| s
q)
Which I believe is what's causing the 'type
error to be thrown by the console when I perform the following queries...
q)select Name, max Ask, max Bid, Time from alpha
'type
q)select max Ask, max Bid, Time by Name from alpha
'type
q)select from alpha where Bid=(max;Bid) fby Name
'type
q)select from alpha where Name=`BTC
Name Ask Bid Time
-----------------
I know in q I can issue the following command to achieve this...
q)alpha:([]Name:`symbol$(); Ask:`float$(); Bid:`float$(); Time:`datetime$())
q)meta alpha
c | t f a
----| -----
Name| s
Ask | f
Bid | f
Time| z
q)
What is the correct syntax to define the char type for each column in PyQ?