Category Archives: Tips&Tricks

Performance Trap

I was recently processing a number of files using pattern matching. During the processing I was storing information in lists which were subsequently used to populate new JMP data tables.

hit computerEverything worked fine until I increased the number of files by a factor of 10.

After some time I started hitting ‘escape’ and ‘CTRL-Z’ in a frenetic effort to seize control of my laptop.

(more…)

Performance Profiling

In my last post I illustrated the performance boost generated by using matrix operations to conduct least squares regression calculations.  Matrices by their nature require numerical data.  So what about handling a categorical predictor variable?  To do this it’s necessary to create dummy variables – separate variables for each unique level of the predictor variable.

(more…)