Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
dac4b6a1cc
commit
8ec98beb0c
1 changed files with 36 additions and 0 deletions
|
@ -54,4 +54,40 @@ plt.show()
|
|||
|
||||
![image0](image0.png)
|
||||
|
||||
## [matplotlib.pyplot.subplots_adjust](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.subplots_adjust.html)
|
||||
|
||||
```python
|
||||
matplotlib.pyplot.subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)
|
||||
```
|
||||
|
||||
> Adjust the subplot layout parameters.
|
||||
>
|
||||
> Unset parameters are left unmodified; initial values are given by **rcParams["figure.subplot.[name]"]**.
|
||||
>
|
||||
|
||||
> **left** : float, optional
|
||||
>
|
||||
> The position of the left edge of the subplots, as a fraction of the figure width.
|
||||
>
|
||||
> **right** : float, optional
|
||||
>
|
||||
> The position of the right edge of the subplots, as a fraction of the figure width.
|
||||
>
|
||||
> **bottom** : float, optional
|
||||
>
|
||||
> The position of the bottom edge of the subplots, as a fraction of the figure height.
|
||||
>
|
||||
> **top** : float, optional
|
||||
>
|
||||
> The position of the top edge of the subplots, as a fraction of the figure height.
|
||||
>
|
||||
> **wspace** : float, optional
|
||||
>
|
||||
> The width of the padding between subplots, as a fraction of the average Axes width.
|
||||
>
|
||||
> **hspace** : float, optional
|
||||
>
|
||||
> The height of the padding between subplots, as a fraction of the average Axes height.
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue