Main Content

updateMetrics

Update performance metrics in incremental k-means clustering model given new data

Since R2025a

    Description

    Mdl = updateMetrics(Mdl,X) returns a k-means clustering model Mdl, which is the input incrementalKMeans model object Mdl modified to contain the model performance metrics on the incoming predictor data X.

    When the input model is warm (Mdl.IsWarm is true), updateMetrics overwrites the previously computed metrics, stored in the Metrics property, with the new values. Otherwise, updateMetrics stores NaN values in Metrics.

    example

    Examples

    collapse all

    Create an incremental model for k-means clustering that has two clusters.

    Mdl = incrementalKMeans(numClusters=2)
    Mdl = 
      incrementalKMeans
    
             IsWarm: 0
            Metrics: [1×2 table]
        NumClusters: 2
          Centroids: [2×0 double]
           Distance: "sqeuclidean"
    
    
      Properties, Methods
    
    

    Mdl is an incrementalKMeans model object. All its properties are read-only.

    Load and Preprocess Data

    Load the New York city housing data set.

    load NYCHousing2015.mat

    The data set includes 10 variables with information on the sales of properties in New York City in 2015. Keep only the gross square footage and sale price predictors. Keep all records that have a gross square footage above 100 square feet and a sales price above $1000.

    data = NYCHousing2015(:,{'GROSSSQUAREFEET','SALEPRICE'});
    data = data((data.GROSSSQUAREFEET > 100 & data.SALEPRICE > 1000),:);

    Convert the tabular data into a matrix that contains the logarithm of both predictors.

     X = table2array(log10(data));

    Randomly shuffle the order of the records.

     rng(0,"twister"); % For reproducibility
     X = X(randperm(size(X,1)),:);

    Fit and Plot Incremental Model

    Fit the incremental model Mdl to the data by using the fit function. To simulate a data stream, fit the model in chunks of 500 records at a time. At each iteration:

    • Process 500 observations.

    • Overwrite the previous incremental model with a new one fitted to the incoming records.

    • Update the performance metrics for the model. The default metric for Mdl is SimplifiedSilhouette.

    • Store the cumulative and window metrics to see how they evolve during incremental learning.

    • Compute the cluster assignments of all records seen so far, according to the current model.

    • Plot all records seen so far, and color each record by its cluster assignment.

    • Plot the current centroid location of each cluster.

    In this workflow, the updateMetrics function provides information about the model's clustering performance after it is fit to the incoming data chunk. In other workflows, you might want to evaluate a clustering model's performance on unseen data. In such cases, you can call updateMetrics prior to calling the incremental fit function.

    % Initialize plot properties
    hold on
    h1 = scatter(NaN,NaN,0.3);
    h2 = plot(NaN,NaN,Marker="o", ...
        MarkerFaceColor="k",MarkerEdgeColor="k");
    h3 = plot(NaN,NaN,Marker="^", ...
        MarkerFaceColor="b",MarkerEdgeColor="b");
    colormap(gca,"prism")
    pbaspect([1,1,1])
    xlim([min(X(:,1)),max(X(:,1))]);
    ylim([min(X(:,2)),max(X(:,2))]);
    xlabel("log Gross Square Footage");
    ylabel("log Sales Price in Dollars")
    
    % Incremental fitting and plotting
    n = numel(X(:,1));
    numObsPerChunk = 500;
    nchunk = floor(n/numObsPerChunk);
    sil = array2table(zeros(nchunk,2),VariableNames=["Cumulative" "Window"]);
    
    for j = 1:nchunk
        ibegin = min(n,numObsPerChunk*(j-1) + 1);
        iend = min(n,numObsPerChunk*j);
        idx = ibegin:iend;    
        Mdl = fit(Mdl,X(idx,:));
        Mdl = updateMetrics(Mdl,X(idx,:));
        sil{j,:} = Mdl.Metrics{'SimplifiedSilhouette',:};
        indices = assignClusters(Mdl,X(1:iend,:));
        title("Iteration " + num2str(j))
        set(h1,XData=X(1:iend,1),YData=X(1:iend,2),CData=indices);
        set(h2,Marker="none") % Erase previous centroid markers
        set(h3,Marker="none")
        set(h2,XData=Mdl.Centroids(1,1),YData=Mdl.Centroids(1,2),Marker="o")
        set(h3,Xdata=Mdl.Centroids(2,1),YData=Mdl.Centroids(2,2),Marker="^")
        pause(0.5);
    end
    Warning: Hardware-accelerated graphics is unavailable. Displaying fewer markers to preserve interactivity.
    
    hold off

    Figure contains an axes object. The axes object with title Iteration 59, xlabel log Gross Square Footage, ylabel log Sales Price in Dollars contains 3 objects of type scatter, line.

    To view the animated figure, you can run the example, or open the animated gif below in your web browser.

    FixedNumberofClusters.gif

    At each iteration, the animated plot displays all the observations processed so far as small circles, and colors them according to the cluster assignments of the current model. The black circle indicates the centroid position of cluster 1, and the blue triangle indicates the centroid position of cluster 2.

    Plot the window and cumulative metrics values at each iteration.

    h4 = plot(sil.Variables);
    xlabel("Iteration")
    ylabel("Performance Metric")
    xline(Mdl.WarmupPeriod/numObsPerChunk,'g-.')
    legend(h4,sil.Properties.VariableNames,Location="southeast")

    Figure contains an axes object. The axes object with xlabel Iteration, ylabel Performance Metric contains 3 objects of type line, constantline. These objects represent Cumulative, Window.

    The updateMetrics function calculates the performance metrics after the end of the warm-up period. The performance metrics rise rapidly from an initial value of 0.81 and approach a value of approximately 0.88 after 10 iterations.

    Input Arguments

    collapse all

    Incremental k-means clustering model, specified as an incrementalKMeans model object. You can create Mdl by calling incrementalKMeans directly.

    Chunk of predictor data, specified as an n-by-Mdl.NumPredictors numeric matrix. The rows of X correspond to observations, and the columns correspond to variables. The software ignores observations that contain at least one missing value.

    Note

    updateMetrics supports only numeric input predictor data. If your input data includes categorical data, you must prepare an encoded version of the categorical data. Use dummyvar to convert each categorical variable to a numeric matrix of dummy variables. Then, concatenate all dummy variable matrices and any other numeric predictors. For more details, see Dummy Variables.

    Data Types: single | double

    Output Arguments

    collapse all

    Updated incremental k-means clustering model, returned as an incrementalKMeans model object.

    If the input model Mdl is not warm (Mdl.IsWarm is false), updateMetrics does not compute performance metrics. As a result, the Metrics property of the output model Mdl contains only NaN values. If the input model is warm, updateMetrics computes the cumulative and window performance metrics on the new data X, and overwrites the corresponding elements of Mdl.Metrics. All other properties of the input model carry over to the output model. For more details, see Performance Metrics.

    More About

    collapse all

    References

    [1] Vendramin, Lucas, Ricardo J.G.B. Campello, and Eduardo R. Hruschka. On the Comparison of Relative Clustering Validity Criteria. In Proceedings of the 2009 SIAM international conference on data mining, 733–744. Society for Industrial and Applied Mathematics, 2009.

    Version History

    Introduced in R2025a

    See Also

    Functions