Computer scienceData scienceInstrumentsVisualizationMatplotlib overview

Introduction to matplotlib

Working with subplots

Report a typo

Look at the code snippet:

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 10)
y = x

fig, axes = plt.subplots(3, 3, figsize=(10, 16))

It produces a figure with 9 subplots. Which of the following code lines produces a line in the middle one of them?

Select one option from the list
___

Create a free account to access the full topic