Ich lerne wahrscheinlich bei jupyter
, aber es ist salzig.
jupyter
In1: %matplotlib inline
In2: import matplotlib.pyplot as plt
Was ist das% am Anfang der Zeile?
Ich weiß nicht was es bedeutet. Übe vorerst RYFM
.
python
$ pydoc matplotlib
(Weggelassen)
or using ipython::
ipython
at your terminal, followed by::
In [1]: %matplotlib
In [2]: import matplotlib.pyplot as plt
at the ipython shell prompt.
(Weggelassen)
Selbst wenn Sie "%" erhalten, könnten Sie denken, dass es eine Funktion des Hauptteils von "Python" ist.
Das Ergebnis von Google. ↓
%quickref
In der Befehlszeile "ipython" und "% quickref".
python
$ ipython
In [1]: %quickref
(Weggelassen)
%magic : Information about IPython's 'magic' % functions.
(Weggelassen)
Dann ist die Erklärung von "Magie" "% Magie".
%magic
python
In [2]: %magic
IPython's 'magic' functions
===========================
The magic function system provides a series of functions which allow you to
control the behavior of IPython itself, plus a lot of system-type
features. There are two kinds of magics, line-oriented and cell-oriented.
(Weggelassen)
Wenn Sie also nach "matplotlib" suchen, wird die Erklärung herauskommen.
Abgesehen davon
For a list of the available magic functions, use %lsmagic. For a description of any of them, type %magic_name?, e.g. '%cd?'.
Korrekt
%matplotlib?
python
$ ipython
In [1]: %matplotlib?
Machen.
Recommended Posts