% 2D scatter plot close all; toolboxAdd; load DS.mat load bestInputIndex.mat DS.input=DS.input(bestInputIndex, :); % Take the selected features DS.inputName=DS.inputName(bestInputIndex); figure; dsScatterPlot(DS); % Original data plot title('Original data'); DS.input=inputNormalize(DS.input); opt.showAnnotation=1; opt.showLegend=0; figure; dsScatterPlot(DS, opt); % Data plot after normalization title('Normalized Data');