Category Archives: Data Analysis

ANOVA TEST to Determine Statistical Significance Running ANOVA test to check whether the total value of ATM transactions using debit cards in India is influenced by the month of the year. The data for the analysis has been obtained from … Continue reading

Posted in Big Data, Data Analysis, Uncategorized | Tagged | Leave a comment

Visualizing Data

Univariate graphs for the 4 variables I have chosen: Death by Asphyxiation: Code: import pandas import numpy import math import matplotlib.pyplot as plt import seaborn data = pandas.read_csv(‘data.csv’) data[‘YISM2534’] = pandas.to_numeric(data[‘YISM2534’]) data[‘YISW2534’] = pandas.to_numeric(data[‘YISW2534’]) data[‘DBA’] = pandas.to_numeric(data[‘DBA’]) data[‘DBACEIL’] = numpy.ceil(data[‘DBAPER1000’]) … Continue reading

Posted in Big Data, Data Analysis | Leave a comment

Getting started with Python!

So this week, I wrote my first program in Python for analyzing frequency distribution of data. Unfortunately, the data I had selected did not lend well to frequency distribution. The main reason for this was that none of the variables … Continue reading

Posted in Big Data, Data Analysis | Leave a comment

My First Project

Understanding the socio-economic factors of a specific region and how these factors influence each other is crucial to framing societal problems in the right context and finding constructive solutions. Aside from the obvious advantages and positive impact that such research … Continue reading

Posted in Big Data, Data Analysis | Leave a comment