We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given dg as a DiGraph:
julia> dg {75, 213} directed simple Int64 graph
using GraphRecipes using Plots graphplot(dg, method=:tree)
Fails with:
ERROR: LoadError: DimensionMismatch("new dimensions (4, 214) must be consistent with array size 854") Stacktrace: [1] (::Base.var"#throw_dmrsa#234")(dims::Tuple{Int64, Int64}, len::Int64) @ Base ./reshapedarray.jl:41 [2] reshape @ ./reshapedarray.jl:45 [inlined] [3] reshape(::Vector{Float64}, ::Int64, ::Int64) @ Base ./reshapedarray.jl:116 [4] macro expansion @ ~/.julia/packages/GraphRecipes/5fwQZ/src/graphs.jl:787 [inlined] [5] apply_recipe(plotattributes::AbstractDict{Symbol, Any}, g::GraphRecipes.GraphPlot) @ GraphRecipes ~/.julia/packages/RecipesBase/92zOw/src/RecipesBase.jl:282 [6] _process_userrecipes!(plt::Plots.Plot{Plots.GRBackend}, plotattributes::Dict{Symbol, Any}, args::Tuple{GraphRecipes.GraphPlot}) @ RecipesPipeline ~/.julia/packages/RecipesPipeline/tkFmN/src/user_recipe.jl:35 [7] recipe_pipeline!(plt::Plots.Plot{Plots.GRBackend}, plotattributes::Dict{Symbol, Any}, args::Tuple{GraphRecipes.GraphPlot}) @ RecipesPipeline ~/.julia/packages/RecipesPipeline/tkFmN/src/RecipesPipeline.jl:69 [8] _plot!(plt::Plots.Plot{Plots.GRBackend}, plotattributes::Dict{Symbol, Any}, args::Tuple{GraphRecipes.GraphPlot}) @ Plots ~/.julia/packages/Plots/8GUYs/src/plot.jl:167 [9] plot(args::GraphRecipes.GraphPlot; kw::Base.Iterators.Pairs{Symbol, Symbol, Tuple{Symbol}, NamedTuple{(:method,), Tuple{Symbol}}}) @ Plots ~/.julia/packages/Plots/8GUYs/src/plot.jl:57 [10] #graphplot#82 @ ~/.julia/packages/RecipesBase/92zOw/src/RecipesBase.jl:357 [inlined] ...
What's going on here?
The text was updated successfully, but these errors were encountered:
Not sure,
I just plotted a graph comparable in size (includes cycles) without any issue:
julia> prc.graph {95, 152} directed simple Int64 graph julia> using GraphRecipes julia> using Plots julia> graphplot(prc.graph, method=:tree)
Sorry, something went wrong.
No branches or pull requests
Given dg as a DiGraph:
Fails with:
What's going on here?
The text was updated successfully, but these errors were encountered: