JetBrains / JetBrains/lets-plot
`facet_wrap`: make the axes on all facets the same in polar coordinates
Open
- Dominant language
- Kotlin
- Stars
- 1.8k
- Forks
- 60
- PR merge metrics
- No merged PRs in 30d
Description
Example:
```python
data = {
'v': ['A', 'A', 'B', 'C', 'A', 'B', 'B', 'C'],
'g': ['t', 't', 't', 't', 's', 's', 's', 's'],
}
ggplot(data, aes('v')) + geom_bar() + coord_polar() + facet_wrap(facets='g', ncol=1)
```
Output:
However, in a polar coordinate system, the axes should be consistent across all facets. Unlike the Cartesian coordinate system, where everything is supposed to stay as it is.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.