---
title: "EDA for Quine-Dataset"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
theme: united
social: menu
source_code: embed
---
```{r setup, include=FALSE}
library(flexdashboard)
library(MASS)
library(lattice)
library(DT)
```
## dataset description {.tabset}
### View of the 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)
```
## Univariate Analysis {.tabset}
### Analysis of Learners
```{r}
hist(quine$Days)
histogram(~Days|Lrn,data = quine)
```
### Agewise Analysis Learners
```{r}
histogram(~Days|Age,data = quine,breaks = 50,col=c("red","blue"),main="Age VS Learners")
```