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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현