```python d = { 'name': ['foo', 'foo', 'bar', 'bar'], 'g': ['A', 'B', 'A', 'B'], 'value': [80, 90, 15, 35] } ggplot(d) + geom_bar(aes(x='name', y='value', group='name'), stat='identity') ``` Actual result: <img width="618" height="473" alt="Image" src="https://github.com/user-attachments/assets/58c8097d-8a68-420e-ab42-f60862979ec7" /> When values are assigned to their own group, everything works as expected (note the mapping `group='g'`): <img width="618" height="473" alt="Image" src="https://github.com/user-attachments/assets/6facf214-0888-4488-b33e-d110351a2f72" />