JComponent comp = null;
comp = createComponent("Normal", -5, 5,
new String[] { "μ=0,σ\u00B2=0.2", "μ=0,σ\u00B2=1", "μ=0,σ\u00B2=5", "μ=-2,σ\u00B2=0.5" },
new NormalDistribution(0, FastMath.sqrt(0.2)),
new NormalDistribution(),
new NormalDistribution(0, FastMath.sqrt(5)),
new NormalDistribution(-2, FastMath.sqrt(0.5)));
container.add(comp, c);
c.gridx++;
comp = createComponent("Beta", 0, 1,
new String[] { "α=β=0.5", "α=5,β=1", "α=1,β=3", "α=2,β=2", "α=2,β=5" },