Python-Functions-For-EDA-
Imagine how lengthy the process of data exploration may become especially when you are dealing with datasets that contains a large number of variables! I hope you have already started experiencing thistedious process. For every numerical variable you identify in your dataset, you generate histogram and boxplot. For every categorical variable you identify in your dataset, you create bar chart and maybe pie chart. This is how the first few steps of your data exploration look like. Generating graphs one at a time may be okay if you have a dataset with less number of columns. However, this may be an extremely tedious task when you are working on a large dataset with lots of columns in it. Not only that this process can also become extremely time consuming. In this assignment, you will create functions to reduce this everyday task of yours to a considerable extent and save hours and hours of your time.