ComeçarComece de graça

Pages

In this exercise you'll create a dashboard with two pages.

Este exercício faz parte do curso

Building Dashboards with flexdashboard

Ver curso

Instruções do exercício

  • Add a chart and make it appear on a second page.
  • Title the first page "Overview" and the second page "Details".
  • Expand the HTML viewer after knitting and navigate between the two pages.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

{"my_document.Rmd":"---\ntitle: \"Bikeshare\"\noutput: \n  flexdashboard::flex_dashboard:\n    orientation: columns\n---\n\n```{r setup, include=FALSE}\nlibrary(flexdashboard)\n```\n\n\nColumn\n-----------------------------------------------------------------------\n\n### Chart A\n\n```{r}\n\n```\n\nColumn\n-----------------------------------------------------------------------\n\n### Chart B\n\n```{r}\n\n```\n\n### Chart C\n\n```{r}\n\n```\n\n\n"}
Editar e executar o código