Hello, I would like to change the color of my histograms to the Parula color of matlab, change
ChartStyle -> "Pastel", ChartStyle -> "Parula"
How can I do it?,
data1 = RandomVariate[NormalDistribution[0, 1], 500];
data2 = RandomVariate[NormalDistribution[3, 1/2], 500];
data3 = RandomVariate[NormalDistribution[5, 1/3], 500];
Histogram[{data1, data2, data3}, PlotRange -> All,
ChartStyle -> "Pastel", ChartLegends -> {"3Er", "4Er", "5Er"}]
Other question
How can I change a density plot with parula color?