Data

This project demondstats how to built different graphs using Shiny and Plotly. The data is datasets::mtcars which is given as below;

Dashboard

Graphs

---
title: "Shiny Plots with Flexdashboard"
author: "Cornelius Tanui"
output: 
  flexdashboard::flex_dashboard:
    orientation: rows
    social: menu
    vertical_layout: scroll
    source_code: embed
    logo: shiny_flex_plotly_logos.png
    theme: lumen
date: 7/8/2021
---





```{r Load Packages, include = FALSE}
# load Packages
library(tidyverse)
library(flexdashboard)
library(plotly)

```


Data
==================================================

This project demondstats how to built different graphs using Shiny and Plotly. 
The data is `datasets::mtcars` which is given as below;

```{r Load Data, include = FALSE}
data <- datasets::mtcars
shiny::renderTable({
  head(data, n = 5)
})
```


Dashboard
==================================================


### Graphs