Weave.jl/test/documents/pyplot_formats_ref.md

76 lines
1.1 KiB
Markdown
Raw Normal View History

2014-12-09 14:32:41 +01:00
````julia
using PyPlot
x = linspace(0, 2π, 200)
plot(x, sin(x))
````
````
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f6a20a84780>
````
2014-12-09 14:32:41 +01:00
![sin(x) function.](figures/pyplot_formats_sin_fun_1.png)
````
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f6a208be780>
````
2014-12-09 14:32:41 +01:00
![cos(x) function.](figures/pyplot_formats_2_1.png)
````
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f6a207f5c50>
````
2014-12-09 14:32:41 +01:00
![](figures/pyplot_formats_cos2_fun_1.png)
````julia
julia> x = linspace(0, 2π, 200)
200-element LinSpace{Float64}:
0.0,0.0315738,0.0631476,0.0947214,0.126295,…,6.18846,6.22004,6.25161,6.28319
2014-12-09 14:32:41 +01:00
julia> plot(x, sin(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f6a207da518>
2014-12-09 14:32:41 +01:00
julia> y = 20
20
2014-12-09 14:32:41 +01:00
julia> plot(x, cos(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f6a207da780>
2014-12-09 14:32:41 +01:00
````
![](figures/pyplot_formats_4_1.png)
````julia
x = randn(100, 100)
contourf(x)
````
````
PyObject <matplotlib.contour.QuadContourSet object at 0x7f6a1980e0f0>
````
2014-12-09 14:32:41 +01:00
![](figures/pyplot_formats_5_1.png)