Skip to content

Commit 1c71fc0

Browse files
remove PyPlot.jl
1 parent 5def66d commit 1c71fc0

File tree

3 files changed

+0
-25
lines changed

3 files changed

+0
-25
lines changed

docs/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
55
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
66
PlotlyJS = "f0f68f2c-4968-5e81-91da-67840de0976a"
77
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
8-
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
98

109
[compat]
1110
Documenter = "~0.24"

docs/make.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
using Documenter, FastTransforms, Literate, Plots
22

3-
# Set matplotlib gui backend
4-
ENV["MPLBACKEND"] = "agg"
5-
ENV["PYTHON"] = ""
6-
7-
# Initialize backends
8-
pyplot()
93
plotlyjs()
104
gr()
115

examples/disk.jl

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,6 @@ F = [f(r*cospi(θ), r*sinpi(θ)) for r in r, θ in θ]
4141
X = [r*cospi(θ) for r in r, θ in θ]
4242
Y = [r*sinpi(θ) for r in r, θ in θ]
4343

44-
# PyPlot
45-
pyplot()
46-
contourf(X, Y, F; levels=30, linewidth=2, xlabel="x", ylabel="y")
47-
scatter!(X, Y; legend=false, markercolor=:red, size=(600, 600))
48-
49-
# bis
50-
scatter3d(vec(X), vec(Y), vec(0X); markersize=2.0, markercolor=:red, size=(600, 600))
51-
surface!(X, Y, F; legend=false, xlabel="x", ylabel="y")
52-
5344
# PlotlyJS
5445
plotlyjs()
5546
scatter3d(vec(X), vec(Y), vec(0X); markersize=0.5, markercolor=:red, size=(600, 600))
@@ -112,15 +103,6 @@ F = [f(x[n], w[n]*z) for n in 1:N, z in z]
112103
X = [x for x in x, z in z]
113104
Y = [w*z for w in w, z in z]
114105

115-
# PyPlot
116-
pyplot()
117-
contourf(X, Y, F; levels=30, linewidth=2, xlabel="x", ylabel="y")
118-
scatter!(X, Y; legend=false, markercolor=:green, size=(600, 600))
119-
120-
# bis
121-
scatter3d(vec(X), vec(Y), vec(0X); markersize=2.0, markercolor=:green, size=(600, 600))
122-
surface!(X, Y, F; legend=false, xlabel="x", ylabel="y")
123-
124106
# PlotlyJS
125107
plotlyjs()
126108
scatter3d(vec(X), vec(Y), vec(0X); markersize=0.5, markercolor=:green, size=(600, 600))

0 commit comments

Comments
 (0)