inst/apps/purchasing-power/ui.R

ui <- 
  bslib::page_sidebar(
    title = "Purchasing Power Over Time",
    sidebar = bslib::sidebar(
      width = 250,
      shiny::numericInput(
        inputId = "x",
        label = "Current value of money",
        step = 1,
        value = 10
      ),
      shiny::sliderInput(
        inputId = "real_interest_rate",
        label = "Real interest rate",
        step = 0.1,
        post = "%",
        min = -10, 
        max = 10, 
        value = -5
      ),
      shiny::sliderInput(
        inputId = "years",
        label = "Number of years",
        animate = shiny::animationOptions(
          interval = 700,
          loop = FALSE,
          playButton = NULL,
          pauseButton = NULL
        ),
        step = 1,
        min = 1, 
        max = 100, 
        value = 50
      ),
      asNamespace("R4GoodPersonalFinances")$sidebar_footer()
    ),
    
    bslib::card(
      max_height = "650px",
      full_screen = TRUE,
      shiny::plotOutput("purchasing_power_plot"),
      bslib::card_footer(
        bslib::popover(
          bsicons::bs_icon("gear"),
          shiny::numericInput(
            inputId = "res", 
            value = getOption("R4GPF.plot_res", default = 120), 
            label = "Plot resolution"
          ),
          title = "Settings"
        )
      )
    )
  )

Try the R4GoodPersonalFinances package in your browser

Any scripts or data that you put into this service are public.

R4GoodPersonalFinances documentation built on April 4, 2025, 1:48 a.m.