This code is a demonstration of my proficiency of csv file handling, DataFrame construction and Matplotlib plotting ability using suicide data from Kaggle.

Data retrieved from: https://www.kaggle.com/sathutr/global-suicide-data?select=gender_rates.csv

Here I declare 3 DataFrames by using the pd.read_csv method.

Comparing df2 and df3 using the head method shows the data that we are dealing with.

This shows the data frame merging of data frames df2 and df3 into a single data frame named df4 by merging on 3 properties, dropping the null values, grouping by by Entity and Year, and then finally finding the mean on each instance of those groupings to be able to have each countries average suicide rates for both types, adjusted per 100000 people and Male-Female Ratio of Suicide Rate. Construction and manipulation of data frames is apparent from this cell.

Here we can see the suicide rate per 100,000 people and Male-Female Ratio of Suicide Rate averaged for all countries in our dataset for each year. Is suicide rates increasing?

From interpretting the plotted line graph it appears to show that males have a higher rate of suicide on average across countries and rates increased during the 90's to early 2000's, as well suicide rates seemed to be the highest per 100,000 people around 1982. This demonstrates ability to compare data when plotting.