forked from alandefreitas/matplotplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistogram_2.cpp
38 lines (28 loc) · 840 Bytes
/
histogram_2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <cmath>
#include <matplot/matplot.h>
#include <random>
int main() {
using namespace matplot;
std::vector<double> x = randn(10000, 0, 1);
subplot(2, 3, 0);
hist(x, histogram::binning_algorithm::automatic);
title("Automatic binning");
subplot(2, 3, 1);
hist(x, histogram::binning_algorithm::scott);
title("Scott's rule");
subplot(2, 3, 2);
hist(x, histogram::binning_algorithm::fd);
title("Freedman-Diaconis rule");
subplot(2, 3, 3);
hist(x, histogram::binning_algorithm::integers);
title("Integers rule");
subplot(2, 3, 4);
hist(x, histogram::binning_algorithm::sturges);
title("Sturges' rule");
subplot(2, 3, 5);
hist(x, histogram::binning_algorithm::sqrt);
title("Square root rule");
save("histogram_2.svg");
show();
return 0;
}