ggalt icon indicating copy to clipboard operation
ggalt copied to clipboard

geom_dumbbell end point shape by group

Open kimblew opened this issue 1 year ago • 0 comments

Hi @hrbrmstr liking geom_dumbbell but have a case where I would like to have different shapes for the end point based upon a group

looking something similar to

df <- data.frame(sample = c('a','b'), from=c(1,2), to=c(4,3),outcome=as.factor(c('happy','sad'))) ggplot(df, aes(y=forcats::fct_reorder(sample,from,.desc=T),x=from,xend=to)) + geom_dumbbell() + labs(y=NULL)

geom_dumbbell(shape_xend = outcome)

kimblew avatar Jan 31 '23 22:01 kimblew