Ideas for colorfully and clearly highlighting graph edges according to weightsStandardForm on Graph edgesColoring edges of a graph according to their weight?Styling the edges of a graph according to the multiplicities of the edgesChanging edge weights in a graph using PropertyValueCannot get Mathematica to recognise Vertex Weights of GraphOther Ideas for Clickable Graph BuildupHow to style a graph according to the direction of the edges and the centrality of the vertices?FindShortestPath in a Random Geometric Graph: Quick Version?How to filter-out edges in a HighlightGraph[] visualization based on VertexCoordinates[]?Finding the dangling free part of a percolating cluster

Email Account under attack (really) - anything I can do?

Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

Ideas for 3rd eye abilities

Why do UK politicians seemingly ignore opinion polls on Brexit?

What does 'script /dev/null' do?

How could a lack of term limits lead to a "dictatorship?"

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Is this food a bread or a loaf?

Hosting Wordpress in a EC2 Load Balanced Instance

How to deal with fear of taking dependencies

How to manage monthly salary

aging parents with no investments

Extreme, but not acceptable situation and I can't start the work tomorrow morning

New order #4: World

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

Why airport relocation isn't done gradually?

Why do we use polarized capacitors?

What is the command to reset a PC without deleting any files

How can I plot a Farey diagram?

What to wear for invited talk in Canada

Symmetry in quantum mechanics

Information to fellow intern about hiring?



Ideas for colorfully and clearly highlighting graph edges according to weights


StandardForm on Graph edgesColoring edges of a graph according to their weight?Styling the edges of a graph according to the multiplicities of the edgesChanging edge weights in a graph using PropertyValueCannot get Mathematica to recognise Vertex Weights of GraphOther Ideas for Clickable Graph BuildupHow to style a graph according to the direction of the edges and the centrality of the vertices?FindShortestPath in a Random Geometric Graph: Quick Version?How to filter-out edges in a HighlightGraph[] visualization based on VertexCoordinates[]?Finding the dangling free part of a percolating cluster













5












$begingroup$


I am trying to figure out a way to include edgeweights in the visualisation of a graph in Mathematica, to find an idea for the drawing such that even for relatively large node numbers the graphs remain visually clear. But the basic built-in feature leads to rather messy layouts as soon as there are large number of nodes/edges. Here's an example below:



SeedRandom[100]
n = 500;
m = 1000;
edgeweights = 1./RandomReal[0.1, 1, m];
G = RandomGraph[n, m, EdgeWeight -> edgeweights]


Produces:
enter image description here



Including GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True into the definition of G produces:



enter image description here



It seems to simply draw the nodes whose connecting edge weight is larger closer to one another, which leads to a very dense embedded layout.



Would it be possible to:



  • Modulate the edge thickness and color [*] according to their weights? The weights do not necessarily have to be given in the graph definition (G), they could also simply be called for the purpose of the visualisation.

[*]: That is, the greater the weight, the thicker and the more brightly colored the edge. For normalization, we can use the maximal weight in the vector of edgeweights.










share|improve this question









$endgroup$
















    5












    $begingroup$


    I am trying to figure out a way to include edgeweights in the visualisation of a graph in Mathematica, to find an idea for the drawing such that even for relatively large node numbers the graphs remain visually clear. But the basic built-in feature leads to rather messy layouts as soon as there are large number of nodes/edges. Here's an example below:



    SeedRandom[100]
    n = 500;
    m = 1000;
    edgeweights = 1./RandomReal[0.1, 1, m];
    G = RandomGraph[n, m, EdgeWeight -> edgeweights]


    Produces:
    enter image description here



    Including GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True into the definition of G produces:



    enter image description here



    It seems to simply draw the nodes whose connecting edge weight is larger closer to one another, which leads to a very dense embedded layout.



    Would it be possible to:



    • Modulate the edge thickness and color [*] according to their weights? The weights do not necessarily have to be given in the graph definition (G), they could also simply be called for the purpose of the visualisation.

    [*]: That is, the greater the weight, the thicker and the more brightly colored the edge. For normalization, we can use the maximal weight in the vector of edgeweights.










    share|improve this question









    $endgroup$














      5












      5








      5





      $begingroup$


      I am trying to figure out a way to include edgeweights in the visualisation of a graph in Mathematica, to find an idea for the drawing such that even for relatively large node numbers the graphs remain visually clear. But the basic built-in feature leads to rather messy layouts as soon as there are large number of nodes/edges. Here's an example below:



      SeedRandom[100]
      n = 500;
      m = 1000;
      edgeweights = 1./RandomReal[0.1, 1, m];
      G = RandomGraph[n, m, EdgeWeight -> edgeweights]


      Produces:
      enter image description here



      Including GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True into the definition of G produces:



      enter image description here



      It seems to simply draw the nodes whose connecting edge weight is larger closer to one another, which leads to a very dense embedded layout.



      Would it be possible to:



      • Modulate the edge thickness and color [*] according to their weights? The weights do not necessarily have to be given in the graph definition (G), they could also simply be called for the purpose of the visualisation.

      [*]: That is, the greater the weight, the thicker and the more brightly colored the edge. For normalization, we can use the maximal weight in the vector of edgeweights.










      share|improve this question









      $endgroup$




      I am trying to figure out a way to include edgeweights in the visualisation of a graph in Mathematica, to find an idea for the drawing such that even for relatively large node numbers the graphs remain visually clear. But the basic built-in feature leads to rather messy layouts as soon as there are large number of nodes/edges. Here's an example below:



      SeedRandom[100]
      n = 500;
      m = 1000;
      edgeweights = 1./RandomReal[0.1, 1, m];
      G = RandomGraph[n, m, EdgeWeight -> edgeweights]


      Produces:
      enter image description here



      Including GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True into the definition of G produces:



      enter image description here



      It seems to simply draw the nodes whose connecting edge weight is larger closer to one another, which leads to a very dense embedded layout.



      Would it be possible to:



      • Modulate the edge thickness and color [*] according to their weights? The weights do not necessarily have to be given in the graph definition (G), they could also simply be called for the purpose of the visualisation.

      [*]: That is, the greater the weight, the thicker and the more brightly colored the edge. For normalization, we can use the maximal weight in the vector of edgeweights.







      graphics graphs-and-networks visualization






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 16 hours ago









      user929304user929304

      30629




      30629




















          3 Answers
          3






          active

          oldest

          votes


















          4












          $begingroup$

          I do not think that any good way exists. Once a graph is large enough, it will always look like a hairball unless it has a clear structure that might be made visible. For example, this is a similarity graph of musicians. The musicians cluster into groups, and it is possible to make this structure visible. Your example graph, on the other hand, is completely random, with random edge weights. Since there are lots of nodes and edges, but no real information is contained within them, I do not think that it can be visualized in a meaningful way.



          Assuming that there is something to show, things you can try are:




          • Take edge weights into consideration when computing the layout. Look up individual graph layouts on the GraphLayout doc page, and see if they support weights. You have already found GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True, but it's still useful to mention this for other readers.



            The example I linked above was created by one of the authors of the igraph library. IGraph/M is a Mathematica interface to igraph (and much more), and exposes multiple layout algorithms that support weights. The above example was created using the DrL layout (IGLayoutDrL function in IGraph/M)




          • Visualize weights as not edge lengths, but edge weights or edge colours. You can do this with EdgeStyle. IGraph/M provides a very convenient way to do it:



            SeedRandom[137]
            g = RandomGraph[10, 20, EdgeWeight -> RandomReal[.1, 1, 20]]

            Graph[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/3]]] //
            IGEdgeMap[AbsoluteThickness[10 #] &, EdgeStyle -> IGEdgeProp[EdgeWeight]]


            enter image description here




          • Use colours in the same way.



            Graph[g, EdgeStyle -> Directive[CapForm["Round"], AbsoluteThickness[4]]] //
            IGEdgeMap[ColorData["RustTones"], EdgeStyle -> Rescale@*IGEdgeProp[EdgeWeight]]


            enter image description here




          • Use all of the above: edge length, edge thickness and edge colour.



            IGLayoutFruchtermanReingold[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/2]]] // 
            IGEdgeMap[
            Directive[ColorData["RustTones"][#], AbsoluteThickness[10 #]] &,
            EdgeStyle -> (#/Max[#] &)@*IGEdgeProp[EdgeWeight]]


            enter image description here




          • Cluster the graph vertices before visualizing them. The clustering can take weights into account.



            CommunityGraphPlot[g]


            enter image description here



            This related to what I said above. First, try to identify the structure, then explicitly make it visible.







          share|improve this answer









          $endgroup$




















            3












            $begingroup$

            edgeStyle[weights_, thickbounds_:0.0001,0.01, colorf_:ColorData["SolarColors"]]:=
            Block[minmax, thickness, color,
            minmax = MinMax[weights];
            thickness = Thickness /@ Rescale[weights, minmax, thickbounds];
            color = colorf /@ Rescale[weights, minmax, 0, 1];
            Thread[Directive[Opacity[.7], CapForm["Round"], thickness, color]]
            ]


            Here's the example:



            Graph[G, EdgeStyle -> Thread[EdgeList[G] -> edgeStyle[edgeweights]], 
            VertexSize -> 1, VertexStyle -> Blue]


            enter image description here



            With different thickness and color:



            Graph[G, EdgeStyle -> 
            Thread[EdgeList[G] ->
            edgeStyle[edgeweights, 0.0001, 0.02,
            ColorData["BrightBands"]]], VertexSize -> 1, VertexStyle -> Blue]


            enter image description here






            share|improve this answer









            $endgroup$




















              2












              $begingroup$

              When you have a lot of things to display in a small space you get a mess no matter what. But you can always try to make it better. I suggest 2 steps:



              1. Untangle a bit the mess with GraphLayout

              2. Avoid noise in style logic

              1. Untangle a bit the mess with GraphLayout



              I would use a proper GraphLayout for a specific cases. For instance, a general messy graph can benefit from "GravityEmbedding" which will be available in V12 (compare left and right images):



              RandomGraph[100,100,ImageSize->400,GraphLayout->#]&/@
              Automatic,"GravityEmbedding"


              enter image description here



              But on the other hand in case of trees you are better of with "RadialEmbedding"



              Graph[RandomInteger[#]<->#+1&/@Range[0,500],ImageSize->400,GraphLayout->#]&/@
              Automatic,"RadialEmbedding"


              enter image description here



              And so on depending on your specific graph structure.



              2. Avoid noise in style logic



              I recommend to read an article I wrote (even so your graphs are larger a lot of logic still holds):



              On design of styles for small weighted graphs: https://community.wolfram.com/groups/-/m/t/838652



              enter image description here






              share|improve this answer









              $endgroup$













                Your Answer





                StackExchange.ifUsing("editor", function ()
                return StackExchange.using("mathjaxEditing", function ()
                StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
                StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
                );
                );
                , "mathjax-editing");

                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "387"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                draft saved

                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194811%2fideas-for-colorfully-and-clearly-highlighting-graph-edges-according-to-weights%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                4












                $begingroup$

                I do not think that any good way exists. Once a graph is large enough, it will always look like a hairball unless it has a clear structure that might be made visible. For example, this is a similarity graph of musicians. The musicians cluster into groups, and it is possible to make this structure visible. Your example graph, on the other hand, is completely random, with random edge weights. Since there are lots of nodes and edges, but no real information is contained within them, I do not think that it can be visualized in a meaningful way.



                Assuming that there is something to show, things you can try are:




                • Take edge weights into consideration when computing the layout. Look up individual graph layouts on the GraphLayout doc page, and see if they support weights. You have already found GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True, but it's still useful to mention this for other readers.



                  The example I linked above was created by one of the authors of the igraph library. IGraph/M is a Mathematica interface to igraph (and much more), and exposes multiple layout algorithms that support weights. The above example was created using the DrL layout (IGLayoutDrL function in IGraph/M)




                • Visualize weights as not edge lengths, but edge weights or edge colours. You can do this with EdgeStyle. IGraph/M provides a very convenient way to do it:



                  SeedRandom[137]
                  g = RandomGraph[10, 20, EdgeWeight -> RandomReal[.1, 1, 20]]

                  Graph[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/3]]] //
                  IGEdgeMap[AbsoluteThickness[10 #] &, EdgeStyle -> IGEdgeProp[EdgeWeight]]


                  enter image description here




                • Use colours in the same way.



                  Graph[g, EdgeStyle -> Directive[CapForm["Round"], AbsoluteThickness[4]]] //
                  IGEdgeMap[ColorData["RustTones"], EdgeStyle -> Rescale@*IGEdgeProp[EdgeWeight]]


                  enter image description here




                • Use all of the above: edge length, edge thickness and edge colour.



                  IGLayoutFruchtermanReingold[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/2]]] // 
                  IGEdgeMap[
                  Directive[ColorData["RustTones"][#], AbsoluteThickness[10 #]] &,
                  EdgeStyle -> (#/Max[#] &)@*IGEdgeProp[EdgeWeight]]


                  enter image description here




                • Cluster the graph vertices before visualizing them. The clustering can take weights into account.



                  CommunityGraphPlot[g]


                  enter image description here



                  This related to what I said above. First, try to identify the structure, then explicitly make it visible.







                share|improve this answer









                $endgroup$

















                  4












                  $begingroup$

                  I do not think that any good way exists. Once a graph is large enough, it will always look like a hairball unless it has a clear structure that might be made visible. For example, this is a similarity graph of musicians. The musicians cluster into groups, and it is possible to make this structure visible. Your example graph, on the other hand, is completely random, with random edge weights. Since there are lots of nodes and edges, but no real information is contained within them, I do not think that it can be visualized in a meaningful way.



                  Assuming that there is something to show, things you can try are:




                  • Take edge weights into consideration when computing the layout. Look up individual graph layouts on the GraphLayout doc page, and see if they support weights. You have already found GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True, but it's still useful to mention this for other readers.



                    The example I linked above was created by one of the authors of the igraph library. IGraph/M is a Mathematica interface to igraph (and much more), and exposes multiple layout algorithms that support weights. The above example was created using the DrL layout (IGLayoutDrL function in IGraph/M)




                  • Visualize weights as not edge lengths, but edge weights or edge colours. You can do this with EdgeStyle. IGraph/M provides a very convenient way to do it:



                    SeedRandom[137]
                    g = RandomGraph[10, 20, EdgeWeight -> RandomReal[.1, 1, 20]]

                    Graph[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/3]]] //
                    IGEdgeMap[AbsoluteThickness[10 #] &, EdgeStyle -> IGEdgeProp[EdgeWeight]]


                    enter image description here




                  • Use colours in the same way.



                    Graph[g, EdgeStyle -> Directive[CapForm["Round"], AbsoluteThickness[4]]] //
                    IGEdgeMap[ColorData["RustTones"], EdgeStyle -> Rescale@*IGEdgeProp[EdgeWeight]]


                    enter image description here




                  • Use all of the above: edge length, edge thickness and edge colour.



                    IGLayoutFruchtermanReingold[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/2]]] // 
                    IGEdgeMap[
                    Directive[ColorData["RustTones"][#], AbsoluteThickness[10 #]] &,
                    EdgeStyle -> (#/Max[#] &)@*IGEdgeProp[EdgeWeight]]


                    enter image description here




                  • Cluster the graph vertices before visualizing them. The clustering can take weights into account.



                    CommunityGraphPlot[g]


                    enter image description here



                    This related to what I said above. First, try to identify the structure, then explicitly make it visible.







                  share|improve this answer









                  $endgroup$















                    4












                    4








                    4





                    $begingroup$

                    I do not think that any good way exists. Once a graph is large enough, it will always look like a hairball unless it has a clear structure that might be made visible. For example, this is a similarity graph of musicians. The musicians cluster into groups, and it is possible to make this structure visible. Your example graph, on the other hand, is completely random, with random edge weights. Since there are lots of nodes and edges, but no real information is contained within them, I do not think that it can be visualized in a meaningful way.



                    Assuming that there is something to show, things you can try are:




                    • Take edge weights into consideration when computing the layout. Look up individual graph layouts on the GraphLayout doc page, and see if they support weights. You have already found GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True, but it's still useful to mention this for other readers.



                      The example I linked above was created by one of the authors of the igraph library. IGraph/M is a Mathematica interface to igraph (and much more), and exposes multiple layout algorithms that support weights. The above example was created using the DrL layout (IGLayoutDrL function in IGraph/M)




                    • Visualize weights as not edge lengths, but edge weights or edge colours. You can do this with EdgeStyle. IGraph/M provides a very convenient way to do it:



                      SeedRandom[137]
                      g = RandomGraph[10, 20, EdgeWeight -> RandomReal[.1, 1, 20]]

                      Graph[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/3]]] //
                      IGEdgeMap[AbsoluteThickness[10 #] &, EdgeStyle -> IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Use colours in the same way.



                      Graph[g, EdgeStyle -> Directive[CapForm["Round"], AbsoluteThickness[4]]] //
                      IGEdgeMap[ColorData["RustTones"], EdgeStyle -> Rescale@*IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Use all of the above: edge length, edge thickness and edge colour.



                      IGLayoutFruchtermanReingold[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/2]]] // 
                      IGEdgeMap[
                      Directive[ColorData["RustTones"][#], AbsoluteThickness[10 #]] &,
                      EdgeStyle -> (#/Max[#] &)@*IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Cluster the graph vertices before visualizing them. The clustering can take weights into account.



                      CommunityGraphPlot[g]


                      enter image description here



                      This related to what I said above. First, try to identify the structure, then explicitly make it visible.







                    share|improve this answer









                    $endgroup$



                    I do not think that any good way exists. Once a graph is large enough, it will always look like a hairball unless it has a clear structure that might be made visible. For example, this is a similarity graph of musicians. The musicians cluster into groups, and it is possible to make this structure visible. Your example graph, on the other hand, is completely random, with random edge weights. Since there are lots of nodes and edges, but no real information is contained within them, I do not think that it can be visualized in a meaningful way.



                    Assuming that there is something to show, things you can try are:




                    • Take edge weights into consideration when computing the layout. Look up individual graph layouts on the GraphLayout doc page, and see if they support weights. You have already found GraphLayout -> "SpringElectricalEmbedding", "EdgeWeighted" -> True, but it's still useful to mention this for other readers.



                      The example I linked above was created by one of the authors of the igraph library. IGraph/M is a Mathematica interface to igraph (and much more), and exposes multiple layout algorithms that support weights. The above example was created using the DrL layout (IGLayoutDrL function in IGraph/M)




                    • Visualize weights as not edge lengths, but edge weights or edge colours. You can do this with EdgeStyle. IGraph/M provides a very convenient way to do it:



                      SeedRandom[137]
                      g = RandomGraph[10, 20, EdgeWeight -> RandomReal[.1, 1, 20]]

                      Graph[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/3]]] //
                      IGEdgeMap[AbsoluteThickness[10 #] &, EdgeStyle -> IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Use colours in the same way.



                      Graph[g, EdgeStyle -> Directive[CapForm["Round"], AbsoluteThickness[4]]] //
                      IGEdgeMap[ColorData["RustTones"], EdgeStyle -> Rescale@*IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Use all of the above: edge length, edge thickness and edge colour.



                      IGLayoutFruchtermanReingold[g, EdgeStyle -> Directive[CapForm["Round"], Opacity[1/2]]] // 
                      IGEdgeMap[
                      Directive[ColorData["RustTones"][#], AbsoluteThickness[10 #]] &,
                      EdgeStyle -> (#/Max[#] &)@*IGEdgeProp[EdgeWeight]]


                      enter image description here




                    • Cluster the graph vertices before visualizing them. The clustering can take weights into account.



                      CommunityGraphPlot[g]


                      enter image description here



                      This related to what I said above. First, try to identify the structure, then explicitly make it visible.








                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 15 hours ago









                    SzabolcsSzabolcs

                    163k14448945




                    163k14448945





















                        3












                        $begingroup$

                        edgeStyle[weights_, thickbounds_:0.0001,0.01, colorf_:ColorData["SolarColors"]]:=
                        Block[minmax, thickness, color,
                        minmax = MinMax[weights];
                        thickness = Thickness /@ Rescale[weights, minmax, thickbounds];
                        color = colorf /@ Rescale[weights, minmax, 0, 1];
                        Thread[Directive[Opacity[.7], CapForm["Round"], thickness, color]]
                        ]


                        Here's the example:



                        Graph[G, EdgeStyle -> Thread[EdgeList[G] -> edgeStyle[edgeweights]], 
                        VertexSize -> 1, VertexStyle -> Blue]


                        enter image description here



                        With different thickness and color:



                        Graph[G, EdgeStyle -> 
                        Thread[EdgeList[G] ->
                        edgeStyle[edgeweights, 0.0001, 0.02,
                        ColorData["BrightBands"]]], VertexSize -> 1, VertexStyle -> Blue]


                        enter image description here






                        share|improve this answer









                        $endgroup$

















                          3












                          $begingroup$

                          edgeStyle[weights_, thickbounds_:0.0001,0.01, colorf_:ColorData["SolarColors"]]:=
                          Block[minmax, thickness, color,
                          minmax = MinMax[weights];
                          thickness = Thickness /@ Rescale[weights, minmax, thickbounds];
                          color = colorf /@ Rescale[weights, minmax, 0, 1];
                          Thread[Directive[Opacity[.7], CapForm["Round"], thickness, color]]
                          ]


                          Here's the example:



                          Graph[G, EdgeStyle -> Thread[EdgeList[G] -> edgeStyle[edgeweights]], 
                          VertexSize -> 1, VertexStyle -> Blue]


                          enter image description here



                          With different thickness and color:



                          Graph[G, EdgeStyle -> 
                          Thread[EdgeList[G] ->
                          edgeStyle[edgeweights, 0.0001, 0.02,
                          ColorData["BrightBands"]]], VertexSize -> 1, VertexStyle -> Blue]


                          enter image description here






                          share|improve this answer









                          $endgroup$















                            3












                            3








                            3





                            $begingroup$

                            edgeStyle[weights_, thickbounds_:0.0001,0.01, colorf_:ColorData["SolarColors"]]:=
                            Block[minmax, thickness, color,
                            minmax = MinMax[weights];
                            thickness = Thickness /@ Rescale[weights, minmax, thickbounds];
                            color = colorf /@ Rescale[weights, minmax, 0, 1];
                            Thread[Directive[Opacity[.7], CapForm["Round"], thickness, color]]
                            ]


                            Here's the example:



                            Graph[G, EdgeStyle -> Thread[EdgeList[G] -> edgeStyle[edgeweights]], 
                            VertexSize -> 1, VertexStyle -> Blue]


                            enter image description here



                            With different thickness and color:



                            Graph[G, EdgeStyle -> 
                            Thread[EdgeList[G] ->
                            edgeStyle[edgeweights, 0.0001, 0.02,
                            ColorData["BrightBands"]]], VertexSize -> 1, VertexStyle -> Blue]


                            enter image description here






                            share|improve this answer









                            $endgroup$



                            edgeStyle[weights_, thickbounds_:0.0001,0.01, colorf_:ColorData["SolarColors"]]:=
                            Block[minmax, thickness, color,
                            minmax = MinMax[weights];
                            thickness = Thickness /@ Rescale[weights, minmax, thickbounds];
                            color = colorf /@ Rescale[weights, minmax, 0, 1];
                            Thread[Directive[Opacity[.7], CapForm["Round"], thickness, color]]
                            ]


                            Here's the example:



                            Graph[G, EdgeStyle -> Thread[EdgeList[G] -> edgeStyle[edgeweights]], 
                            VertexSize -> 1, VertexStyle -> Blue]


                            enter image description here



                            With different thickness and color:



                            Graph[G, EdgeStyle -> 
                            Thread[EdgeList[G] ->
                            edgeStyle[edgeweights, 0.0001, 0.02,
                            ColorData["BrightBands"]]], VertexSize -> 1, VertexStyle -> Blue]


                            enter image description here







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered 15 hours ago









                            halmirhalmir

                            10.6k2544




                            10.6k2544





















                                2












                                $begingroup$

                                When you have a lot of things to display in a small space you get a mess no matter what. But you can always try to make it better. I suggest 2 steps:



                                1. Untangle a bit the mess with GraphLayout

                                2. Avoid noise in style logic

                                1. Untangle a bit the mess with GraphLayout



                                I would use a proper GraphLayout for a specific cases. For instance, a general messy graph can benefit from "GravityEmbedding" which will be available in V12 (compare left and right images):



                                RandomGraph[100,100,ImageSize->400,GraphLayout->#]&/@
                                Automatic,"GravityEmbedding"


                                enter image description here



                                But on the other hand in case of trees you are better of with "RadialEmbedding"



                                Graph[RandomInteger[#]<->#+1&/@Range[0,500],ImageSize->400,GraphLayout->#]&/@
                                Automatic,"RadialEmbedding"


                                enter image description here



                                And so on depending on your specific graph structure.



                                2. Avoid noise in style logic



                                I recommend to read an article I wrote (even so your graphs are larger a lot of logic still holds):



                                On design of styles for small weighted graphs: https://community.wolfram.com/groups/-/m/t/838652



                                enter image description here






                                share|improve this answer









                                $endgroup$

















                                  2












                                  $begingroup$

                                  When you have a lot of things to display in a small space you get a mess no matter what. But you can always try to make it better. I suggest 2 steps:



                                  1. Untangle a bit the mess with GraphLayout

                                  2. Avoid noise in style logic

                                  1. Untangle a bit the mess with GraphLayout



                                  I would use a proper GraphLayout for a specific cases. For instance, a general messy graph can benefit from "GravityEmbedding" which will be available in V12 (compare left and right images):



                                  RandomGraph[100,100,ImageSize->400,GraphLayout->#]&/@
                                  Automatic,"GravityEmbedding"


                                  enter image description here



                                  But on the other hand in case of trees you are better of with "RadialEmbedding"



                                  Graph[RandomInteger[#]<->#+1&/@Range[0,500],ImageSize->400,GraphLayout->#]&/@
                                  Automatic,"RadialEmbedding"


                                  enter image description here



                                  And so on depending on your specific graph structure.



                                  2. Avoid noise in style logic



                                  I recommend to read an article I wrote (even so your graphs are larger a lot of logic still holds):



                                  On design of styles for small weighted graphs: https://community.wolfram.com/groups/-/m/t/838652



                                  enter image description here






                                  share|improve this answer









                                  $endgroup$















                                    2












                                    2








                                    2





                                    $begingroup$

                                    When you have a lot of things to display in a small space you get a mess no matter what. But you can always try to make it better. I suggest 2 steps:



                                    1. Untangle a bit the mess with GraphLayout

                                    2. Avoid noise in style logic

                                    1. Untangle a bit the mess with GraphLayout



                                    I would use a proper GraphLayout for a specific cases. For instance, a general messy graph can benefit from "GravityEmbedding" which will be available in V12 (compare left and right images):



                                    RandomGraph[100,100,ImageSize->400,GraphLayout->#]&/@
                                    Automatic,"GravityEmbedding"


                                    enter image description here



                                    But on the other hand in case of trees you are better of with "RadialEmbedding"



                                    Graph[RandomInteger[#]<->#+1&/@Range[0,500],ImageSize->400,GraphLayout->#]&/@
                                    Automatic,"RadialEmbedding"


                                    enter image description here



                                    And so on depending on your specific graph structure.



                                    2. Avoid noise in style logic



                                    I recommend to read an article I wrote (even so your graphs are larger a lot of logic still holds):



                                    On design of styles for small weighted graphs: https://community.wolfram.com/groups/-/m/t/838652



                                    enter image description here






                                    share|improve this answer









                                    $endgroup$



                                    When you have a lot of things to display in a small space you get a mess no matter what. But you can always try to make it better. I suggest 2 steps:



                                    1. Untangle a bit the mess with GraphLayout

                                    2. Avoid noise in style logic

                                    1. Untangle a bit the mess with GraphLayout



                                    I would use a proper GraphLayout for a specific cases. For instance, a general messy graph can benefit from "GravityEmbedding" which will be available in V12 (compare left and right images):



                                    RandomGraph[100,100,ImageSize->400,GraphLayout->#]&/@
                                    Automatic,"GravityEmbedding"


                                    enter image description here



                                    But on the other hand in case of trees you are better of with "RadialEmbedding"



                                    Graph[RandomInteger[#]<->#+1&/@Range[0,500],ImageSize->400,GraphLayout->#]&/@
                                    Automatic,"RadialEmbedding"


                                    enter image description here



                                    And so on depending on your specific graph structure.



                                    2. Avoid noise in style logic



                                    I recommend to read an article I wrote (even so your graphs are larger a lot of logic still holds):



                                    On design of styles for small weighted graphs: https://community.wolfram.com/groups/-/m/t/838652



                                    enter image description here







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered 9 hours ago









                                    Vitaliy KaurovVitaliy Kaurov

                                    57.8k6162283




                                    57.8k6162283



























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Mathematica Stack Exchange!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        Use MathJax to format equations. MathJax reference.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194811%2fideas-for-colorfully-and-clearly-highlighting-graph-edges-according-to-weights%23new-answer', 'question_page');

                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

                                        Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                                        How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2