I want to make an app which calculates compounding interest on money. For inputs I want to have a money value section so how much money is added to an account per month. Then I want a Year input so how many years your money will compound. And finally I want to have a slider input which is between 5 and 10 percent annual return on the money in the account. I want the output to be a plot with dollars on the y axis and time on the x axis.
Drop files here
or click to upload
library(shiny)
library(ggplot2)
source("ui.R")
source("server.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?