I am using R programming and I want to make automatically plots on numerical and categorical variables, with summary
I am using shiny library
I am using R programming and I want to make automatically plots on numerical and categorical variables, with summary
I am using shiny library
Here is an example of creating a histogram for a numerical variable in shiny using ggplot2:
output$plot1 <- renderPlot({
ggplot(data, aes(x = variable))+
geom_histogram(binwidth = 1)})