If I have a table stored on my hdb process at port 5012.
I have installed PyKX and successfully imported it to the python prompt in terminal.
I then connect to my host=‘localhost’, port=5012
and run a simple query to return my data from hdb q(‘{select name,price,volume,vwap from tab where date>2024.01.01}’)
How do I then use this data in one of the python machine learning algorithms. How do you go about converting the table data into usable python data points to then feed into your selected model? Do you have to extract each column of data and save as a variable of a certain type like running an exec
statement in q process?