blob: 86423adf69ab5a3e1843269fa616b6ea0f86fc86 [file] [log] [blame]
#define _USE_MATH_DEFINES
#include <iostream>
#include <string>
#include "../matplotlibcpp.h"
namespace plt = matplotlibcpp;
int main(int argc, char **argv) {
std::vector<int> test_data;
for (int i = 0; i < 20; i++) {
test_data.push_back(i);
}
plt::bar(test_data);
plt::show();
return (0);
}