#include #include #include int main() { using namespace matplot; std::vector y = {10, 21, 33, 52}; bar(y); gca()->x_axis().ticklabels({"Small", "Medium", "Large", "Extra Large"}); show(); return 0; }