location: Diff for "Shiny"

Institute of Mathematics - PublicMathWiki:

Differences between revisions 3 and 4
Revision 3 as of 2023-04-22 14:28:58
Size: 5028
Editor: crose
Comment:
Revision 4 as of 2023-04-22 14:29:11
Size: 5029
Editor: crose
Comment:
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
== Via `~/public_html` = == Via `~/public_html` ==

Shiny

  • A web application framework for R

URLs

Product

http://shiny.rstudio.com

Documentation

Getting Started, Gallery, Articles, Markdown

IMATH Shiny Server

https://shiny.math.uzh.ch

The Shiny Server searches for .R scripts in the folder he is pointed to and translates the shiny R script to normal HTML any Browser can read.

= Presentation =

Via `~/public_html`

iframe: Show the shiny app as a part of another page

  • Put the following code on the page:

<iframe src="http://shiny.math.uzh.ch/user/doe/shinyapp1/" style="border: 1px solid #AAA; width: 290px; height: 500px"> Your Browser doesn't support iframe </iframe> 

An iframe simply displays another website in your website. With the style part of the command, you can customize the size of the frame.

  • border: set the thickness of the border, the border color aswell as the style it should be displayed in. (solid, dotted, stripped) You can also deactivate the border completely by writing border: none;
  • width: set a custom width to the frame. Normally very dependent on the app you load.
  • height: set a height. Usually you just want the frame to be high enough that no scrollbar appears.
  • float: You can let the frame float to either the left or right side of the text. If you want two iframes displayed side by side, add left to one and right to the other.

Via gitlab deployment

  • Example deployment: https://git.math.uzh.ch/bbaer/publish-shiny example .gitlab-ci.yml file.

  • A commit to the GIT Repo will trigger the deployment described by .gitlab-ci.yml (via a gitlab-runner on alfred16, alfred20 or alfred22)

Debugging Apps

  • Ask IT Support for sudo rights on the shiny server.
  • Activate persistent logs:

[root@shiny22]

# Option einfügen unter zeile 'run_as shiny;'
$ vim /etc/shiny-server/shiny-server.conf
...
run_as shiny;

preserve_logs true;
...

# Paket fehlt (Beispiel von SampleSizeR)
$ less /var/log/shiny-server-git/SampleSizeR-shiny-20230420-132522-42355.log
...
Error in library(ipc) : there is no package called ‘ipc’
...

# Überprüfen ob r-cran paket im ubuntu repo existiert
$ apt install r-cran-ipc

# Sonst Install über R
$ su - -c "R -e \"install.packages('ipc')\""

# Bei anderen Errors sollte der Code überprüft werden

# Am Ende vom Debugging sollte das persistent logging wieder deaktiviert werden, da sonst sehr viele logs entstehen

Samples

The samples displayed on http://shiny.math.uzh.ch page are the following

R Sample: Hello

The folder hello includes two files.

  • server.R
    library(shiny)
    
    # Define server logic required to draw a histogram
    shinyServer(function(input, output) {
    
      # Expression that generates a histogram. The expression is
      # wrapped in a call to renderPlot to indicate that:
      #
      #  1) It is "reactive" and therefore should be automatically
      #     re-executed when inputs change
      #  2) Its output type is a plot
    
      output$distPlot <- renderPlot({
        x    <- faithful[, 2]  # Old Faithful Geyser data
        bins <- seq(min(x), max(x), length.out = input$bins + 1)
    
        # draw the histogram with the specified number of bins
        hist(x, breaks = bins, col = 'darkgray', border = 'white')
      })
    
    })
  • ui.R
    library(shiny)
    
    # Define UI for application that plots random distributions
    shinyUI(pageWithSidebar(
    
      # Application title
      headerPanel("It's Alive!"),
    
      # Sidebar with a slider input for number of observations
      sidebarPanel(
        sliderInput("bins",
                      "Number of bins:",
                      min = 1,
                      max = 50,
                      value = 30)
      ),
    
      # Show a plot of the generated distribution
      mainPanel(
        plotOutput("distPlot", height=250)
      )
    ))

R Markdown Sample: rmd

The rmd Folder includes only one file:

  • index.Rmd
    ---
    title: "Shiny Doc"
    output: html_document
    runtime: shiny
    ---
    
    ```{r, echo=FALSE}
    shinyApp(
    
      ui = fluidPage(
        selectInput("region", "Region:",
                    choices = colnames(WorldPhones)),
        plotOutput("phonePlot", height=270)
      ),
    
      server = function(input, output) {
        output$phonePlot <- renderPlot({
          barplot(WorldPhones[,input$region]*1000,
                  ylab = "Number of Telephones", xlab = "Year")
        })
      },
    
      options = list(height = 345)
    )
    ```

PublicMathWiki: Shiny (last edited 2024-03-27 12:56:44 by crose)