Where Does Your Medicine Come From?: MakeOverMonday 2018 Week 8

Posted on February 18, 2018 in MakeOverMonday

Goal of this Visualization task is to create a visualization for the Drug and Medicine Exports data for different countries.

In this blog post, I'm trying to find the leading countries in Export across these 5 years.

Cleaning up workspace and loading required libraries

rm(list = ls())
library(tidyverse) #Data …

Continue reading

The Winter Olympics: MakeOverMonday 2018 Week7

Posted on February 15, 2018 in MakeOverMonday

Goal of this Visualization task is to create an alternative visualization to the Tableau's visualization for Winter Olympics data for different countries.

In this blog post, I'm trying to generate a World Choropleth Map showing the total counts of medals for each country.

Cleaning up workspace and loading required libraries …


Continue reading

India Transportation Accidents Exploration Project

Posted on September 28, 2017 in Projects

Project Summary

With this project I will try to visualize and understand the traffic accident data for India as publicly accessible here.

Project Goals

  1. Visualize traffic information and find trends

  2. Find outliers and see if any valuable info can be dugout for each state or overall.

  3. Try to predict number …


Continue reading

Visualizations Relating to NYCTaxiTrip Competition on Kaggle

Posted on September 26, 2017 in Projects

Cleanup

rm(list = ls())

Loading Libraries

library(tidyverse) # data wrangling
## Loading tidyverse: ggplot2
## Loading tidyverse: tibble
## Loading tidyverse: tidyr
## Loading tidyverse: readr
## Loading tidyverse: purrr
## Loading tidyverse: dplyr

## Conflicts with tidy packages ----------------------------------------------

## filter(): dplyr, stats
## lag():    dplyr, stats
library(lubridate) # date and time 
## 
## Attaching package: 'lubridate'

## The following object is …

Continue reading