@@ -12,7 +12,7 @@ package to call Matplotlib directly from Julia with little or no
1212overhead (arrays are passed without making a copy).
1313
1414This 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 )
1616API to display plots in any Julia graphical backend, including as
1717inline graphics in [ IJulia] ( https://github.com/JuliaLang/IJulia.jl ) .
1818Alternatively, you can use a Python-based graphical Matplotlib
@@ -129,7 +129,7 @@ You can get the current figure as a `Figure` object (a wrapper
129129around ` matplotlib.pyplot.Figure ` ) by calling ` gcf() ` .
130130
131131The ` 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 ) ,
133133so you can use ` display(fig) ` to show a ` fig::PyFigure ` and
134134` show(io, mime, fig) ` (or ` writemime ` in Julia 0.4) to write it to a given ` mime ` type string
135135(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,
154154SVG, or PDF images, such as the IJulia environment. To use a
155155different backend, simply call ` pushdisplay ` with the desired
156156` 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 )
158158for more detail.
159159
160160On the other hand, you may wish to use one of the Python Matplotlib
0 commit comments