Special Python libraries for EDA
There are multiple Python libraries that provide EDA in a single line of code. One of the most advanced of them is dtale
, shown in the following code snippet:
import dtale dtale.show(valid_close_df)
The preceding command produces a table with all the data (displaying only the first seven columns), as follows:
Clicking on the arrow at the top displays a menu with all the functionality, as illustrated in the following screenshot:
Clicking on the column header displays each feature's individual commands, as illustrated in the following screenshot:
Interactive EDA, rather than command-driven EDA, has its advantages...