未验证 提交 cc549528 编写于 作者: 飞龙 提交者: GitHub

Merge pull request #28 from sfw134/master

Update 36.md
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
PairGrid.map(func, **kwargs) PairGrid.map(func, **kwargs)
``` ```
Plot with the same function in every subplot. 在每个子图中用相同的函数绘制。
参数:`func`callable plotting function 参数:`func`可调用的绘图函数
> Must take x, y arrays as positional arguments and draw onto the “currently active” matplotlib Axes. Also needs to accept kwargs called `color` and `label`. > 必须将x,y数组作为位置参数并绘制到“当前活动”的matplotlib轴上。还需要接受名为`color`和`label`的kwargs。
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
PairGrid.map_diag(func, **kwargs) PairGrid.map_diag(func, **kwargs)
``` ```
Plot with a univariate function on each diagonal subplot. 在每一个对角线子图上用一个单变量函数绘制。
参数:`func`callable plotting function 参数:`func`可调用的绘图函数
> Must take an x array as a positional argument and draw onto the “currently active” matplotlib Axes. Also needs to accept kwargs called `color` and `label`. >必须将x,y数组作为位置参数并绘制到“当前活动”的matplotlib轴上。还需要接受名为color和label的kwargs。
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
PairGrid.map_offdiag(func, **kwargs) PairGrid.map_offdiag(func, **kwargs)
``` ```
Plot with a bivariate function on the off-diagonal subplots. 在非对角线子图上用一个双变量函数绘图。
参数:`func`callable plotting function 参数:`func`可调用的绘图函数
> Must take x, y arrays as positional arguments and draw onto the “currently active” matplotlib Axes. Also needs to accept kwargs called `color` and `label`. > 必须将x,y数组作为位置参数并绘制到“当前活动”的matplotlib轴上。还需要接受名为color和label的kwargs。
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
PairGrid.map_lower(func, **kwargs) PairGrid.map_lower(func, **kwargs)
``` ```
Plot with a bivariate function on the lower diagonal subplots. 在下对角线子图上用一个双变量函数绘图。
参数:`func`callable plotting function 参数:`func`可调用的绘图函数
> Must take x, y arrays as positional arguments and draw onto the “currently active” matplotlib Axes. Also needs to accept kwargs called `color` and `label`. > 必须将x,y数组作为位置参数并绘制到“当前活动”的matplotlib轴上。还需要接受名为`color`和`label`的kwargs。
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
PairGrid.map_upper(func, **kwargs) PairGrid.map_upper(func, **kwargs)
``` ```
Plot with a bivariate function on the upper diagonal subplots. 在上对角线子图上用一个双变量函数绘图。
参数:`func`callable plotting function 参数:`func`可调用的绘图函数
> Must take x, y arrays as positional arguments and draw onto the “currently active” matplotlib Axes. Also needs to accept kwargs called `color` and `label`. > 必须将x,y数组作为位置参数并绘制到“当前活动”的matplotlib轴上。还需要接受名为color和label的kwargs。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册