November 2017
Beginner to intermediate
366 pages
7h 59m
English
Our RShiny application will have the following features:
Let us look at the user interface code:
ui <- fluidPage( navbarPage("Product Pairs", tabPanel("Transactions" , fileInput("datafile", "select transactions csv file", accept = c( "text/csv", "text/comma-separated-values,text/plain", ".csv" ) ) , dataTableOutput("transactions") ), tabPanel("Product Pairs" ,dataTableOutput("ppairs")), tabPanel("Community" ,plotOutput("community")) ))
We have three panels. In the first panel, we select a product transaction file and display it. In our second ...
Read now
Unlock full access