Example: ```python data = { 'x': [1, 1, 1, 2], 'g': ['a', 'a', 'b', 'b'] } ggplot(data) + \ geom_density(aes(x='x', fill='g'), position='stack') + \ coord_polar() ``` Output: <img src="https://github.com/user-attachments/assets/5f0fc7de-d023-46d7-ae37-adf7b6054ab0" /> Expected: <img src="https://github.com/user-attachments/assets/b0079a01-da2c-49c2-ba66-91c30631a5af" />