Is there any way to make a circular heat map in Mathematica?
Thanks for your help!
Here is a toy example for regular heat map. Can anyone help me make it to a circular one?
data1={{9., 1., 6., 7., 6., 3., 1., 3., 10., 2., 2., 5., 2., 5., 3., 1.}, {5., 5., 5., 4., 4., 6., 4., 6., 9., 1., 2., 10., 2., 1., 1., 6.}, {2., 7., 6., 2., 8., 10., 8., 9., 2., 5., 3., 9., 7., 8., 7., 5.}, {6., 6., 2., 1., 8., 2., 8., 3., 8., 5., 5., 4., 6., 2., 3., 6.}, {8., 1., 8., 2., 5., 8., 5., 3., 5., 3., 4., 2., 2., 4., 4., 1.}, {10., 2., 8., 10., 3., 6., 1., 9., 3., 5., 2., 5., 1., 3., 7., 9.}}; ArrayPlot[data1, ColorFunction -> ColorData["LightTerrain"], Frame -> True, FrameTicks -> {{{{1, "r1"}, {2, "r2"}, {3, "r3"}, {4, "r4"}, {5, "r5"}, {6, "r6"}}, None}, {None, {{1, "c1"}, {2, "c2"}, {3, "c3"}, {4, "c4"}, {5, "c5"}, {6, "c6"}, {7, "c7"}, {8, "c8"}, {9, "c9"}, {10, "c10"}, {11, "c11"}, {12, "c12"}, {13, "c13"}, {14, "c14"}, {15, "c15"}, {16, "c16"}}}}, Epilog -> {Text["Sector1", {2, 8}], Text["Sector2", {6, 8}], Text["Sector3", {10, 8}], Text["Sector4", {14, 8}]}, ImagePadding -> {{20, 20}, {20, 80}}, ImageSize -> Large]
I want to make a circular diagram like the following one.
Reference: https://stackoverflow.com/questions/62556246/how-to-plot-the-variant-circular-bar-chart-in-r-with-ggplot
Is it possible to make a one like this?
Thanks a lot!