Pareto Chat
Ref: Pareto Chat - Matplot++
#include <cmath>
#include <matplot/matplot.h>
#include <random>
int main()
{
using namespace matplot;
std::vector<double> codelines = {200, 120, 555, 608, 1024, 101, 57, 687};
std::vector<std::string> coders = {"Fred", "Ginger", "Norman", "Max",
"Julia", "Wally", "Heidi", "Pat"};
pareto(codelines, coders);
title("Lines of Code by Programmer");
show();
return 0;
}