EDA Plots:
- New algorithm for density scatterplots that finds how many points are within a defined radius of each point. It is slow, so it will only be used when there are less than 10,000 points.
- Another new algorithm for density scatterplots, this one for when there are more than 10,000 points. This algorithm uses np.histogram2d with enough bins, so that each actual point is consistent with one of the bins. Then, for each bin, add up the points in adjacent bins.
- Updates to plot functions to give option for creating plot without saving it.
EDA:
- Added new EDA function for compiling summary statistics on each column.
Other:
- Updates to __init__ files in order to access individual functions.
- Created new 'utils' folder to keep utility functions that could be useful outside the package as well.