In Pandas, you can use the following to create a scatter matrix: ```python from pandas.plotting import scatter_matrix ``` ```python scatter_matrix(my_df, figsize=(12,8)) ``` ![[Scatter Matrix.png]]