Powerful convenience for Julia visualizations and data analysis http://juliaplots.github.io/
daschw on master
switch to github actions add CI.yml allow failures on nightly and 1 more (compare)
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)
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```
arrow=Arrow(:simple, :head, 1.0, 1.0)
works, but indeed doesn’t change the arrowhead in GR 😕. I think the syntax arrow=arrow(1.0, 1.0)
is also supposed to work.
[slack] <nils.gudat> Can anybody try``(@v1.5) pkg> activate --temp
Activating new environment at
C:\Users\ngudat\AppData\Local\Temp\jl_CgzhED\Project.toml`
(jl_CgzhED) pkg> add StaticArrays Plots
julia> using Plots
[ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80]
ERROR: LoadError: TypeError: in Type{...} expression, expected UnionAll, got Type{ColorSchemes.ColorScheme}
````