glnvdl
glnvdl

Reputation: 397

Deploy R markdown document on shinyapps.io

I'm trying to deploy an R markdown document on the shinyapp.io server.

I have followed the steps as described here. However, step 8 indicates the presence of a "deploy" button. This button is missing.

As an alternative I have tried :

  1. to open a new R script
  2. Navigate to the Working Directory for my .Rmd file
  3. Ran the following command: deployApp( appName = "Titanic")

Logs indicated everything was being uploaded correctly. However my destination page indicated 'not found'.

My questions:

  1. Why did the 'deploy' button not show?
  2. Why does my page indicate 'not found'?

Below you can find the header 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

Upvotes: 3

Views: 2077

Answers (1)

glnvdl
glnvdl

Reputation: 397

Issue solved with R Studio version

Version 0.99.451 – © 2009-2015 RStudio, Inc.

!Note: In the newest version the deploy button has been replaced with Publish This has not been adapted in the official shiny documentation yet. The screenshot below is the view you get once a first publish (formerly called deploy) action has been taken.

Publish

Upvotes: 2

Related Questions