@@ -12,7 +12,7 @@ package to call Matplotlib directly from Julia with little or no
12
12
overhead (arrays are passed without making a copy).
13
13
14
14
This package takes advantage of Julia's [ multimedia
15
- I/O] ( https://docs.julialang.org/en/latest/stdlib /io-network.html #Multimedia-I/O-1 )
15
+ I/O] ( https://docs.julialang.org/en/latest/base /io-network/ #Multimedia-I/O-1 )
16
16
API to display plots in any Julia graphical backend, including as
17
17
inline graphics in [ IJulia] ( https://github.com/JuliaLang/IJulia.jl ) .
18
18
Alternatively, you can use a Python-based graphical Matplotlib
@@ -129,7 +129,7 @@ You can get the current figure as a `Figure` object (a wrapper
129
129
around ` matplotlib.pyplot.Figure ` ) by calling ` gcf() ` .
130
130
131
131
The ` Figure ` type supports Julia's [ multimedia I/O
132
- API] ( http ://docs.julialang.org/en/latest/stdlib/ base/#multimedia-i-o ) ,
132
+ API] ( https ://docs.julialang.org/en/latest/base/io-network/#Multimedia-I/O-1 ) ,
133
133
so you can use ` display(fig) ` to show a ` fig::PyFigure ` and
134
134
` show(io, mime, fig) ` (or ` writemime ` in Julia 0.4) to write it to a given ` mime ` type string
135
135
(e.g. ` "image/png" ` or ` "application/pdf" ` ) that is supported by the
@@ -154,7 +154,7 @@ PyPlot can use any Julia graphics backend capable of displaying PNG,
154
154
SVG, or PDF images, such as the IJulia environment. To use a
155
155
different backend, simply call ` pushdisplay ` with the desired
156
156
` Display ` ; see the [ Julia multimedia display
157
- API] ( http ://docs.julialang.org/en/latest/stdlib /io-network/#multimedia-i-o )
157
+ API] ( https ://docs.julialang.org/en/latest/base /io-network/#Multimedia-I/O-1 )
158
158
for more detail.
159
159
160
160
On the other hand, you may wish to use one of the Python Matplotlib
0 commit comments