plotly / plotly/plotly.R

Issue translating free y scales

Open
#718 0 comments 0 reactions 0 assignees View on GitHub

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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.