Creating a visualization similar to a trellised scatter plot which would have its rows and columns in the form of a matrix of (N xN).
For example: if there are 4 columns namely A, B, C, and D, then a 4 x 4 matrix type visualization for a scatter plot which would have a scatter plot for each of its column elements, (In the expected outcome, a scatter plot for A vs A, A vs B, A vs C, A vs D and so on for the remaining rows and columns.
As in the attached image: A scatter plot for comparison of individual column element vs the other in matrix form.
This appears to be a request for an interactive Scatterplot Matrix visualization in Spotfire, with a look and feel similar to the static matrix of scatter plot panels that the following example code will generate in open-source R:
data(iris)
pairs(iris)