From 87421631143987eefd65c0db62ef592f1b7e4578 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Tue, 2 Jan 2024 15:26:05 +0100 Subject: [PATCH] Create README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- matplotlib/subplots/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 matplotlib/subplots/README.md diff --git a/matplotlib/subplots/README.md b/matplotlib/subplots/README.md new file mode 100644 index 0000000..54cd97b --- /dev/null +++ b/matplotlib/subplots/README.md @@ -0,0 +1,28 @@ +# subplots +{:.no_toc} + + + +## Top + +Questions to [David Rotermund](mailto:davrot@uni-bremen.de) + + +## [matplotlib.pyplot.subplots](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.subplots.html#matplotlib.pyplot.subplots) + +```python +matplotlib.pyplot.subplots(nrows=1, ncols=1, *, sharex=False, sharey=False, squeeze=True, width_ratios=None, height_ratios=None, subplot_kw=None, gridspec_kw=None, **fig_kw) +``` + +> Create a figure and a set of subplots. +> +> This utility wrapper makes it convenient to create common layouts of subplots, including the enclosing figure object, in a single call. + +> **nrows**, **ncols** : int, default: 1 +> +> Number of rows/columns of the subplot grid. + +