Learn practical skills, build real-world projects, and advance your career

Exploratory Data Analysis And Visualization of Suicides in India

According to Wikipedia about 800,000 people die by suicide worldwide every year,of these 135,000 (17%) are residents of India, a nation with 17.5% of world population. The suicide rate has increased drastically since 2001.
In this EDA we have used 'Suicides in India' dataset from 'kaggle.com'. This dataset contains yearly suicide details of all states/u.t of India by various parameters from 2001-2012.

The parameters are as follows:-

  • Gender
  • Age Group
  • Total
  • Type Code - It mainly shows the causes which is categorised as Social,Educational,Professional,Social Status
  • Type - It further categorise the Type code that is the cause

Downloading the Dataset

We will now download the dataset 'Suicides in India' from 'Kaggle.com' using a module 'opendatasets'.

!pip install jovian opendatasets --upgrade --quiet

Let's begin by downloading the data, and listing the files within the dataset.

# Change this
dataset_url = 'https://www.kaggle.com/rajanand/suicides-in-india/download'