EDA with Python and R
If you have to do data exploration using only Python or R, there are tools that automatically generate a series of visuals that make your life easier. We have two lists below, one for Python tools, the other for R tools, in case you need any. It is easier to find tools for interactive data analysis in Python than in R. Packages available in R often provide wrappers that greatly simplify EDA via coding.
The Python libraries for EDA are the following:
- SweetVIZ (https://pypi.org/project/sweetviz/): An open source Python library that generates beautiful, high-density visualizations to kickstart EDA with just two lines of code
- Lux (https://lux-api.readthedocs.io/): A Python library that facilitates fast and easy data exploration by automating the visualization and data analysis process
- Pandas Profiling (https://pandas-profiling.github.io/pandas-profiling/): Generates profile reports from a pandas dataframe for data analysis
- PandasGUI (https:...