回答編集履歴
3
追記
answer
CHANGED
@@ -19,5 +19,11 @@
|
|
19
19
|
結局質問がわかりませんが
|
20
20
|
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/core/frame.py#L10562](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/core/frame.py#L10562)
|
21
21
|
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L891](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L891)
|
22
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1790](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1790)
|
23
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1731](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1731)
|
24
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1752](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L1752)
|
25
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_matplotlib/__init__.py](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_matplotlib/__init__.py)
|
22
26
|
と呼び出されていきます。
|
27
|
+
matplotlibを直にインポートしているのは`pandas.plotting._matplotlib`の中のモジュール達です。
|
28
|
+
|
23
29
|
pandasがもう1段、処理を抽象化していて、デフォルトのバッグエンドがmatplotlibだということかと。
|
2
追記
answer
CHANGED
@@ -12,4 +12,12 @@
|
|
12
12
|
|
13
13
|
>>> 'plot' in dir(df)
|
14
14
|
True
|
15
|
-
```
|
15
|
+
```
|
16
|
+
----
|
17
|
+
|
18
|
+
|
19
|
+
結局質問がわかりませんが
|
20
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/core/frame.py#L10562](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/core/frame.py#L10562)
|
21
|
+
[https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L891](https://github.com/pandas-dev/pandas/blob/v1.3.0/pandas/plotting/_core.py#L891)
|
22
|
+
と呼び出されていきます。
|
23
|
+
pandasがもう1段、処理を抽象化していて、デフォルトのバッグエンドがmatplotlibだということかと。
|
1
追記
answer
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
ありませんか?
|
2
|
+
|
3
|
+
(目視じゃなくてコードで確認してみました)
|
2
4
|
```python
|
3
5
|
>>> import pandas as pd
|
4
6
|
|