8 Pandas 2: Plotting

Table 8.1: Uses for the plot() method of the pandas Series and DataFrame. The plot ID is the value of the keyword argument kind. That is, df.plot(kind="scatter") creates a scatter plot. Thedefaultkind is"line". The plot() method calls plt.plot(), plt.hist(), plt.scatter(), or another matplotlib ................
................