> testt6 =: Create__testd 'id6'
> InsertCols__testd 'id6'; 0 : 0
> id    int
> ts    binary
> )
> ShowCols__testd 'id6'
> Insert__testd 'id6';<1;<<"1 L:0 i. 5
> Insert__testd 'id6';<2;<<"1 L:0 i. 10
> Insert__testd 'id6';<3;<<"1 L:0 i. 15
> Reads__testd 'from id6'
> 
> but I kept ending up with zero-padded data because I couldn't get the
> individual time series boxed.


Read is preferred to Reads, since it will not zero-pad your data. Reads
often displays things more nicely, but if you're pulling out data to do
something with, you should always use Read to avoid this.

   Read__testd 'from id6'
+--+------------------------------------------------------------------+
|id|1 2 3                                                             |
+--+------------------------------------------------------------------+
|ts|+---------+-------------------+----------------------------------+|
|  ||0 1 2 3 4|0 1 2 3 4 5 6 7 8 9|0 1 2 3 4 5 6 7 8 9 10 11 12 13 14||
|  |+---------+-------------------+----------------------------------+|
+--+------------------------------------------------------------------+
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to