Request for lvplot support
Open
Nobody has claimed this yet.
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
Description
I would like to see geom_lv() from the lvplot library added to ggplotly. Here is an example:
# Load libraries
library(ggplot2)
library(lvplot)
library(plotly)
# Sample data
set.seed(123)
data <- data.frame(
group = rep(LETTERS[1:5], each = 100),
value = c(rnorm(100, mean = 10), rnorm(100, mean = 15),
rnorm(100, mean = 20), rnorm(100, mean = 25),
rnorm(100, mean = 30))
)
# Create letter-value plot
p <- ggplot(data, aes(x = group, y = value)) +
geom_lv() +
theme_minimal()
# Convert to interactive plot with ggplotly
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 with the ggplotly(p) conversion path for the lvplot library's geom_lv() layer, using the example in the issue to reproduce the unsupported plot. Identify the existing geom conversion entry points and tests for comparable geoms; done means geom_lv() renders correctly through ggplotly with coverage for the example behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100