Issue translating free y scales
Open
Nobody has claimed this yet.
ggplotly
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
Description
Works
p <- ggplot(txhousing, aes(month, median)) +
geom_line(aes(group = city)) + geom_smooth(method = "gam") +
facet_wrap(~ year)
ggplotly(p)
missing traces
p <- ggplot(txhousing, aes(month, median)) +
geom_line(aes(group = city)) + geom_smooth(method = "gam") +
facet_wrap(~ year, scales = "free_y")
ggplotly(p)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the two R examples from the issue and compare the rendered traces with and without facet_wrap(scales = "free_y"). Trace the ggplot-to-plotly translation entry point responsible for faceted free scales; done means the second example preserves the expected traces without regressing the first.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100