JetBrains / JetBrains/lets-plot
Duplicated legend labels are not allowed
- Dominant language
- Kotlin
- Stars
- 1.8k
- Forks
- 60
- PR merge metrics
- No merged PRs in 30d
Description
Legend labels are merged by name. Example:
```
data = pd.DataFrame({
'category': ['A', 'B', 'C', 'D'],
'value': [10, 15, 20, 25]
})
ggplot(data) + \
geom_point(aes(x='category', y='value', color='category')) + \
scale_color_manual(values=['red', 'blue', 'green', 'black'], labels=['Label A', 'Label B', 'Label A', 'Label D'])
```
Output:

Expected:

Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.