- A scatterplot is a plot that uses cartesian coordinates to display values of a dataset. It is a graph of points which helps us to visualize the relationship between different dimensions(features).
- The basic algorithm for creating a scatter plot is follows:
#Reference: Interactive Data Visualization: Foundations, Techniques, and Applications, Second Edition by Daniel A. Keim, Georges G. Grinstein, and Matthew O. Ward def scatterplot(xDim,yDim,cDim,rDim,rMin,rMax): for each record i:
x = NORMALIZE(i,xDim)