Question: Histogram and color region

If you work with Maple on a daily basis sometimes you come across
things that seem impossible to do. Yesterday I tried to have two colors
in a histogram ie -3..-1 = red and -1..3 =blue but I could not figure
out how to do it...hummm.....any suggestions?

 

restart:
with(Statistics):
with(plots):

n:=5000:
A:=Sample(RandomVariable(Normal(0,1)),n):

Histogram(A,bincount=100, color=blue);

Please Wait...