Incorrect warning in `layout()` when using `bargroupgap`
Nobody has claimed this yet.
Assessment
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Newbie friendliness
- 45/100
- Issue type
- Bug
- Clarity
- Mostly clear
- Activity status
- Stale
- Tech stack
- r
- Domain
- data-visualization
Research direction
Start by running the reproducible R example in the issue and inspect how layout() validates attributes, focusing on why bargroupgap is rejected despite working. Done means the example no longer emits the invalid-attribute warning while preserving the grouped bar spacing behavior.
Written by the indexing model from the issue text.
Description
When using the bargroupgap argument, the following waring is thrown:
Warning message:
'layout' objects don't have these attributes: 'bargroupgap'
Valid attributes include: ...
However the attribute clearly exists and works
library(ggplot2)
library(plotly)
test <- tibble::tibble(
A = c(1,2,3),
B = c(3,2,1),
C = c(4,1,4)
)
plot_ly(
test,
y = ~A,
type = 'bar',
name = 'Option A',
marker = list(
color = '#4E0F53'
)
) |>
add_trace(
y = ~B,
name = 'Option B',
marker = list(
color = '#DC9542'
)
) |>
add_trace(
y = ~C,
name = 'Option C',
marker = list(
color = '#a8aaad'
)
) |>
layout(
barmode = 'group',
bargroupgap = 0.1
)
plot_ly(
test,
y = ~A,
type = 'bar',
name = 'Option A',
marker = list(
color = '#4E0F53'
)
) |>
add_trace(
y = ~B,
name = 'Option B',
marker = list(
color = '#DC9542'
)
) |>
add_trace(
y = ~C,
name = 'Option C',
marker = list(
color = '#a8aaad'
)
) |>
layout(
barmode = 'group'
)
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
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.
More from plotly/plotly.R
-
Difficulty 2/5 1-3 hours Newbie friendliness 62/100
-
Difficulty 4/5 3-5 days Newbie friendliness 35/100
-
Difficulty 3/5 1-2 days Newbie friendliness 68/100
-
Difficulty 3/5 1-2 days Newbie friendliness 72/100
-
save_image Error Open
Difficulty 3/5 1-2 days Newbie friendliness 52/100
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
easystats/performance#950 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
briandconnelly/airnow#9 ·
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
OHDSI/CohortConstructor#774 ·