Skip to content

Request for lvplot support #2399

Open
Open
@kindacoordinated

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)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions