---
title: "EDA for Queine dataset"
output:
flexdashboard::flex_dashboard:
orientation: row
vertical_layout: scroll
theme: yeti
social: menu
source_code: embed
---
```{r setup, include=FALSE}
library(flexdashboard)
library(MASS)
library(lattice)
library(DT)
```
## Dataset Description {.tabset}
### view Dataset
```{r}
datatable(quine,extensions = 'Buttons' , options = list(dom='Bfrtip',Buttons=c('copy','csv','print','pdf')))
```
### About the dataset
```{r}
str(quine)
```
### summary of the Dataset
```{r}
summary(quine)
```
## Univariate Analysis {.tabset}
### Analysis of Leaners
```{r}
histogram(quine$Days)
```
### Age-wise learner Analysis
```{r}
histogram(~Days|Age,data = quine,breaks = 50,col=c("red","blue"),main = "Age vs learners")
```