devtools::install_github("dreamRs/esquisse")
## Skipping install of 'esquisse' from a github remote, the SHA1 (bdb2453f) has not changed since last install.
##   Use `force = TRUE` to force installation
#loading tidyverse to read input
library(tidyverse)
## -- Attaching packages ------------------------------------------------------- tidyverse 1.2.1 --
## v ggplot2 3.0.0     v purrr   0.2.4
## v tibble  1.4.2     v dplyr   0.7.5
## v tidyr   0.8.1     v stringr 1.3.1
## v readr   1.1.1     v forcats 0.3.0
## Warning: package 'ggplot2' was built under R version 3.5.1
## -- Conflicts ---------------------------------------------------------- tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
# loading itunesr for retrieving itunes review data that we will use in this analysis
library(itunesr)
## Warning: package 'itunesr' was built under R version 3.5.1
#loading the magical esquisse library
library(esquisse)
# Flipkart Reviews
reviews <- getReviews(742044692,'in',1)
#converting Rating to numeric type
reviews$Rating <- as.numeric(reviews$Rating)
#let us say we want to see if there's any correlation between rating and review length
reviews$len <- nchar(reviews$Review)
esquisse::esquisser(mtcars)
## Loading required package: shiny
## 
## Listening on http://127.0.0.1:4952
data("mtcars")
head("mtcars")
## [1] "mtcars"
data()