Hi, if I have a large JMP data table is there a way I can send a message to Open() that only loads in specific column(s)? This would greatly reduce file loading time for a large file. For example if I have this file:
Open("c:\temp\fruit.jmp");
Lets say fruit.jmp contains 200 columns of different fruit types and I may need access to all of these, but for the moment I only need load in one column "Apple" thereby reducing file load time. Doing a subsequent Subset() defeats the purpose, as the large data file needs to be opened first and the objective here is to reduce file load times by only loading in what column(s) are needed. I was hoping something like the following would work, which doesn't of course:
Open("c:\temp\fruit.jmp",columns("Apple"));
suggestions? thx... dj