#include #include #include int main() { using namespace matplot; auto x = randn(100000, 0., 1.); auto y = randn(100000, 0., 1.); binscatter(x, y, bin_scatter_style::point_colormap); colormap(gca(), palette::parula()); show(); return 0; }