Adding sub nodes to networkx (with image) The Next CEO of Stack OverflowHow do I download a file over HTTP using Python?How do you split a list into evenly sized chunks?list comprehension vs. lambda + filterPeak detection in a 2D arrayIs there a way to guarantee hierarchical output from NetworkX?Find improper nodes by rules in networkx?“Large data” work flows using pandasWhy is “1000000000000000 in range(1000000000000001)” so fast in Python 3?NetworkX - Create graph from node and attributesLoad nodes with attributes and edges from DataFrame to NetworkX

Is HostGator storing my password in plaintext?

Need some help with wall behind rangetop

How did people program for Consoles with multiple CPUs?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

How do I go from 300 unfinished/half written blog posts, to published posts?

Is it safe to use c_str() on a temporary string?

Can a single photon have an energy density?

How to Reset Passwords on Multiple Websites Easily?

What is the difference between "behavior" and "behaviour"?

Describing a person. What needs to be mentioned?

WOW air has ceased operation, can I get my tickets refunded?

Why didn't Theresa May consult with Parliament before negotiating a deal with the EU?

Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables

How long to clear the 'suck zone' of a turbofan after start is initiated?

Implement the Thanos sorting algorithm

Which organization defines CJK Unified Ideographs?

Shade part of a Venn diagram

How to get regions to plot as graphics

How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?

What does this shorthand mean?

If the heap is initialized for security, then why is the stack uninitialized?

Increase performance creating Mandelbrot set in python

How do we know the LHC results are robust?

Are there languages with no euphemisms?



Adding sub nodes to networkx (with image)



The Next CEO of Stack OverflowHow do I download a file over HTTP using Python?How do you split a list into evenly sized chunks?list comprehension vs. lambda + filterPeak detection in a 2D arrayIs there a way to guarantee hierarchical output from NetworkX?Find improper nodes by rules in networkx?“Large data” work flows using pandasWhy is “1000000000000000 in range(1000000000000001)” so fast in Python 3?NetworkX - Create graph from node and attributesLoad nodes with attributes and edges from DataFrame to NetworkX










1















I would like to create a networkx graph that looks more or less like this, but I haven't been able to find a way for it to display the way I need. The large nodes and edges display fine, but I haven't been able to find how to add the small nodes.
enter image description here










share|improve this question


























    1















    I would like to create a networkx graph that looks more or less like this, but I haven't been able to find a way for it to display the way I need. The large nodes and edges display fine, but I haven't been able to find how to add the small nodes.
    enter image description here










    share|improve this question
























      1












      1








      1








      I would like to create a networkx graph that looks more or less like this, but I haven't been able to find a way for it to display the way I need. The large nodes and edges display fine, but I haven't been able to find how to add the small nodes.
      enter image description here










      share|improve this question














      I would like to create a networkx graph that looks more or less like this, but I haven't been able to find a way for it to display the way I need. The large nodes and edges display fine, but I haven't been able to find how to add the small nodes.
      enter image description here







      python graph networkx network-analysis






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 16:41









      delicadelica

      11217




      11217






















          1 Answer
          1






          active

          oldest

          votes


















          0














          networkx.draw() has an optional argument node_size:



          node_size (scalar or array, optional (default=300)) – Size of nodes. If an array is specified it must be the same length as nodelist.



          If you want to draw nodes with various sizes, you should specify the array of sizes. You can also use some kind of list generator.




          P.S. I don't recommend to use basic networkx drawing functional. There are many powerful visualization libraries better than networkx. Even in networkx docs you can find the same opinion. One can use Gephi, Graphviz (with various libraries) or Cytoscape for really HUGE graphs.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f55285316%2fadding-sub-nodes-to-networkx-with-image%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            networkx.draw() has an optional argument node_size:



            node_size (scalar or array, optional (default=300)) – Size of nodes. If an array is specified it must be the same length as nodelist.



            If you want to draw nodes with various sizes, you should specify the array of sizes. You can also use some kind of list generator.




            P.S. I don't recommend to use basic networkx drawing functional. There are many powerful visualization libraries better than networkx. Even in networkx docs you can find the same opinion. One can use Gephi, Graphviz (with various libraries) or Cytoscape for really HUGE graphs.






            share|improve this answer



























              0














              networkx.draw() has an optional argument node_size:



              node_size (scalar or array, optional (default=300)) – Size of nodes. If an array is specified it must be the same length as nodelist.



              If you want to draw nodes with various sizes, you should specify the array of sizes. You can also use some kind of list generator.




              P.S. I don't recommend to use basic networkx drawing functional. There are many powerful visualization libraries better than networkx. Even in networkx docs you can find the same opinion. One can use Gephi, Graphviz (with various libraries) or Cytoscape for really HUGE graphs.






              share|improve this answer

























                0












                0








                0







                networkx.draw() has an optional argument node_size:



                node_size (scalar or array, optional (default=300)) – Size of nodes. If an array is specified it must be the same length as nodelist.



                If you want to draw nodes with various sizes, you should specify the array of sizes. You can also use some kind of list generator.




                P.S. I don't recommend to use basic networkx drawing functional. There are many powerful visualization libraries better than networkx. Even in networkx docs you can find the same opinion. One can use Gephi, Graphviz (with various libraries) or Cytoscape for really HUGE graphs.






                share|improve this answer













                networkx.draw() has an optional argument node_size:



                node_size (scalar or array, optional (default=300)) – Size of nodes. If an array is specified it must be the same length as nodelist.



                If you want to draw nodes with various sizes, you should specify the array of sizes. You can also use some kind of list generator.




                P.S. I don't recommend to use basic networkx drawing functional. There are many powerful visualization libraries better than networkx. Even in networkx docs you can find the same opinion. One can use Gephi, Graphviz (with various libraries) or Cytoscape for really HUGE graphs.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 21 at 17:08









                vurmuxvurmux

                2929




                2929





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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.

                    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%2fstackoverflow.com%2fquestions%2f55285316%2fadding-sub-nodes-to-networkx-with-image%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript