Tabsets
In this exercise you'll create a tabset to show two charts in the same layout space.
Bu egzersiz
Building Dashboards with flexdashboard
kursunun bir parçasıdırEgzersiz talimatları
- Add a second chart to the first column that displays as a second tab.
- Expand the html viewer after knitting and navigate between the two tabs.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
{"my_document.Rmd":"---\ntitle: \"Bikeshare\"\noutput: \n flexdashboard::flex_dashboard:\n orientation: columns\n---\n\n```{r setup, include=FALSE}\nlibrary(flexdashboard)\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"}