snippet gg | |
ggplot(${1:data}, aes(${2:aes})) + | |
geom_${3:geom}() | |
snippet shiny | |
library(shiny) | |
ui <- fluidPage( | |
${1:ui} | |
) | |
server <- function(input, output, session){ | |
${2:server} | |
} | |
shinyApp(ui = ui, server = server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment