Expand the R markup document at shinyapps.io

I am trying to deploy an R markdown document to shinyapp.io server.

I followed the steps outlined here here . However, step 8 indicates that there is an expand button. This button is missing.

Alternatively, I tried:

  • to open a new R script
  • Change to the working directory for my .Rmd file.
  • Run the following command: deployApp( appName = "Titanic")

The logs indicated everything loaded correctly. However, my landing page indicated "not found".

My questions:

  • Why is the expand button not showing?
  • Why is my page indicating "not found"?

Below you can find the heading I used in the markdown document.

title: "KAGGLE - TITANIC SURVIVAL ANALYSIS"

output:
  html_document:
    toc: true
    theme: spacelab
    number_sections: true
runtime: shiny

      

Thank you in advance

+3


source to share


1 answer


Problem solved with R version

Version 0.99.451 โ€“ ยฉ 2009-2015 RStudio, Inc.

      



! Note: in the newest version the button has deploy

been changed to Publish

This has not yet been adapted in the official shiny documentation. The screenshot below is the view you get when the first public (previously called deploy

) action was taken.

Publish

+2


source







All Articles