Large table handling and visualization

Hi all,

I’ve been noticing strange behaviours around large table tres as shown in screenshot:

only the first variable is thrown short in the console, is this as expected?

Another issue maybe related to previous: To get summary of specific group of variables I had to copy data into new table (because extraction failed) and in this case the summary is running properly as shown below.

summary(tres, "default", ["Inba","Current : In"]) //pb, wrong results
tI= table(tres(["Inba","Current : In"]), "VariableNames", ["Inba","Current : In"]);
summary(tI)

Any idea about the reason why is failing to summarize the selected items in original tres table where every statistic indicators are wrong for both variables ?

Another issue around accessing the data in tres selected variables (rank 17 and 18 in the 60 variables) : access with variable names is ok while access with rank is failing as shown below

Thank you for your comments,

David

After other tests it seems there are two separate issues:

  • one linked to the variables selection feature of summary()
  • one linked to original tres table creation, VariableNames is to be supplied as a row vector of names for proper behaviour.

I’m reporting the issues in gitlab.

David