---
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)
```
### Age-wise learner analysis
```{r}
histogram(~Days|Age,data=quine,breaks = 50,col=c("red","blue"),main="Age vs Learners")
```