What type of plot does the following code generate?
import pandas as pd
df = pd.DataFrame({'A': [1, 2, 3, 4], 'B': [10, 15, 25, 30]})
pd.plotting.scatter_matrix(df)
Pair plot
Scatter plot
Line plot
Histogram
This question is part of this quiz :
Correlation & Plotting