Skip to content

Commit 5f572c8

Browse files
committed
Switch plotting to pythonplot
1 parent 3b0447d commit 5f572c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Plotting.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using PyPlot
1+
using PythonPlot
22

33
"""
44
Plot the mole fractions of the simulation bsol from t0 to tf
@@ -484,7 +484,7 @@ function plottimescales(Jy;taumax=1e6,taumin=1e-18,taures=10.0^0.5,usediag=true)
484484
else
485485
taus = 1.0./abs.(eigvals(Jy))
486486
end
487-
PyPlot.hist([x==Inf ? 0.0 : x for x in taus],bins=10.0.^(log10(taumin):log10(taures):log10(taumax)))
487+
PythonPlot.hist([x == Inf ? 0.0 : x for x in taus], bins=10.0 .^ (log10(taumin):log10(taures):log10(taumax)))
488488
xscale("log")
489489
xlabel("Species Time Scale [sec]")
490490
ylabel("Counts")

0 commit comments

Comments
 (0)