I have tried to do the following in several different ways but haven't succeeded so far.
I have a list of tables that goes like this:
.rsk.list
extract1.csv | +`date`code etc.
...
I can call the table like this .rsk.list[`extract1.csv] Or I can raze .rsk.list to get a table of all extracts. Except it's not really a table (type 0b)
My goal is to copy some extracts, let's say toload:`extract1.csv`extract5.csv
to a second table, let's call it .rsk.list2
I have tried many variations of this
tmp:{.rsk.risk[x]} each toload \which works
{.rsk.list2[x]:y}[each toload;each tmp} \which does not
If you have any idea how to make the above work or how to cast raze .rsk.list to a table, I'll be forever grateful.