#include int main() { using namespace matplot; auto x = iota(0, 20, 100); vector_1d y = {88, 67, 98, 43, 45, 65}; bar(x, y); xtickformat("usd"); show(); return 0; }