src/plotting.py [96:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    points = np.zeros((len(x), 2))
    points[:, 0] = x
    points[:, 1] = y

    colors = np.arange(1, numsteps)
    plt.scatter(x, y, c=colors, s=2, label='Trajectory of Mixtures')
    plt.scatter(x[0], y[0], c='m', s=40, label='Starting point')  # Make the first point big and pink
    plt.title(f'Trajectory over {numsteps - 1} rounds' + dataset_string + model_string)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/plotting.py [135:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        points = np.zeros((len(x), 2))
        points[:, 0] = x
        points[:, 1] = y

        colors = np.arange(1, numsteps)
        plt.scatter(x, y, c=colors, s=2, label='Trajectory of Mixtures')
        plt.scatter(x[0], y[0], c='m', s=40, label='Starting point')  # Make the first point big and pink
        plt.title(f'Trajectory over {numsteps - 1} rounds' + dataset_string + model_string)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



