---
title: "Exploratory Data Analysis for quine dataset"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
theme: lumen
social: "facebook"
source_code: embed
---
```{r setup, include=FALSE}
library(flexdashboard)
library(MASS)
library(lattice)
library(DT)
```
## Dataset Description {.tabset}
### View of Dataset
```{r}
datatable(quine,extensions='Buttons',options= list(dom='Bfrtip',Buttons=c('copy','csv','print','pdf')))
```
### Structure of the dataset
```{r}
str(quine)
```
### Summary of the dataset
```{r}
summary(quine)
```
## Uni-Variate Analysis {.tabset}
### Analysis of Learners
```{r}
histogram(~Days|Lrn,data = quine,breaks=50, col = c("red","blue"), main = "Days VS Leaners")
```
### Agewise Learner Analysis
```{r}
histogram(~Age|Lrn,data = quine,breaks=50, col = c("purple"), main = "Age VS Lrn")
```