MDS is a visual data reduction method used to better understand the proximity between records or between variables.

Parameters:

Parameters:
See dedicated page for more information.
R_MultiDimensionalScaling performs Multidimensional Scaling (MDS), a technique used to visualize similarities or dissimilarities in data. It is especially effective in reducing high-dimensional data to 2D or 3D for interpretation.
MDS transforms a distance matrix (calculated from the input features) into a geometric representation where similar observations appear closer together.
Use this action to gain visual insight into clustering, similarity patterns, or the structure of the data — especially when Principal Component Analysis (PCA) is not suitable or too linear.
Notes:
idxColor,idxFS, andidxPtsare optional but enhance visual clarity.- Output can be static images or interactive 3D HTML.
- For numeric scale, make sure the column type is float/key, not string.
File: R_MultiDimensionalScaling_Input.csv
| ID | X1 | X2 | X3 | Group |
|---|---|---|---|---|
| A | 2.5 | 3.6 | 1.2 | 1 |
| B | 2.8 | 3.3 | 1.0 | 2 |
| C | 3.1 | 2.9 | 1.1 | 3 |
X1, X2, X3 are passed into idxDataID is used in idxLabelsGroup (optional) can be used for idxColorDistance Matrix Calculation:
by rows to compare observations (most common).by columns to explore variable similarity.MDS Projection:
Output Generation:
chart (static image) or interactive HTML document for rotatable 3D charts.idxColor and idxPts enhance clarity.plot_1.png: MDS projection (2D)plot_2.png: Optional second plot or color-scaled chartmds_interactive.html: Interactive 3D plot (if selected)
