Create README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
c0c34c8e81
commit
8742163114
1 changed files with 28 additions and 0 deletions
28
matplotlib/subplots/README.md
Normal file
28
matplotlib/subplots/README.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# subplots
|
||||
{:.no_toc}
|
||||
|
||||
<nav markdown="1" class="toc-class">
|
||||
* TOC
|
||||
{:toc}
|
||||
</nav>
|
||||
|
||||
## 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.
|
||||
|
||||
|
Loading…
Reference in a new issue