Hello and thanks for this amazing package!
I am trying to create a simple chart that shows bars horizontally (the data is generated within the app). Something like this (in R)
library(tidyverse)
df <- tibble(type = c('john', 'mark', 'anthony','susan'),
value = c(10,14,34,12))
df %>%
ggplot(aes(x = value, y = type)) +
geom_col()
Is this something that can be done with streamlit
?
Thanks!