Powerful convenience for Julia visualizations and data analysis http://juliaplots.github.io/
daschw on master
CompatHelper: bump compat for "… Merge pull request #412 from Ju… (compare)
daschw on master
Adjust shape drawing order, hal… Merge pull request #415 from Bi… (compare)
BeastyBlacksmith on master
Update "For the impatient" to "… (compare)
p1 = make_first_plot()
p2 = make_second_plot()
plot(p1[1][1][:x], p1[1][1][:y], lab="model")
plot!(sp=1, p2) # replace p1
plot!(sp=1, p2) # also replace p1
x = -10:0.01:10
y = x
plot(x, y)
plot(x, y, yaxis = log10.(y .+ 100))
yaxis = log10.(y .+ 100)
only yields values from 1.95 to 2.04 so its a straight line
@df df_final_biomass_diff_array_fw_10_industry_high scatter(:body_mass_fw_1,log10.(:bio_diff_S33_1 .+ 10), xaxis = :log10)
yticks = ([0:0.2:1;], ["$i\\%" for i in 0:20:100])
scatter(..., yticks = (ticks, labelsforeachtick))
[slack] <Moelf> I think the answer is no by looking at the
Supported arguments
in docs' GR page
[slack] <pfitzseb> Anyone know why I'm getting
```julia> graphplot(wheel_digraph(10))
ERROR: MethodError: no method matching plot(::GraphRecipes.GraphPlot)
Stacktrace:
[1] graphplot(::SimpleDiGraph{Int64}; kw::Base.Iterators.Pairs{Union{},Union{},Tuple{},NamedTuple{(),Tuple{}}}) at /home/pfitzseb/.julia/packages/RecipesBase/92zOw/src/RecipesBase.jl:357
[2] graphplot(::SimpleDiGraph{Int64}) at /home/pfitzseb/.julia/packages/RecipesBase/92zOw/src/RecipesBase.jl:357
[3] top-level scope at REPL[13]:1
(@v1.5) pkg> st
Status ~/.julia/environments/v1.5/Project.toml
[bd48cda9] GraphRecipes v0.5.4
[093fc24a] LightGraphs v1.3.0
[626554b9] MetaGraphs v0.6.6
[91a5bcdd] Plots v1.8.1```