Coder Social home page Coder Social logo

Comments (3)

wingedRuslan avatar wingedRuslan commented on July 28, 2024

create subplot for the brain plotting

fig, ax = plt.subplots(figsize=(9,12))

# And then loop through each node and add it in order
for node in node_order:
    aaa = nx.draw_networkx_nodes(H,                                  # A networkx graph
                            pos=pos,                           # A dict with nodes as keys and positions as values.
                            node_color=colors_list[node],       # color for each node
                            nodelist=[node],                   # Draw only this one node
                            ax=ax)

nx.draw_networkx_edges(G2,   # plotting for thresholded edges G2
                        pos=pos,
                        edgelist=edge_list_G2,
                        edge_color = "lightgrey",
                        ax=ax)

add subplot - basically adds an Axes to the figure as part of a subplot arrangement.

ax2 = fig.add_subplot(15, 1, 15, xticklabels=[], yticklabels=[])

vmin = min(nodal_measures[measure].values)
vmax = max(nodal_measures[measure].values)
norm = mpl.colors.Normalize(vmin=vmin, vmax=vmax)

# ticks = [round(vmin,2), round((vmin+vmax)/2,2), round(vmax,2)]
ticks = [vmin, (vmin+vmax)/2, vmax]

cb = mpl.colorbar.ColorbarBase(ax2, cmap="hot_r",
                                norm=norm,
                                ticks=ticks,
                                format='%.2f',
                                orientation='horizontal')

cb.set_label(measure, size=20)
ax2.tick_params(labelsize=20)

plt.tight_layout()

plt.subplots_adjust(top=1)

sns.despine(top=True, right=True, left=True, bottom=True)

fig.savefig("CCC", bbox_inches=0, dpi=100)

from scona.

KirstieJane avatar KirstieJane commented on July 28, 2024

Try adding a grid. Subplots are really hard to adjust and control if you go outside of what they’re designed to do (which is have multiple similar sized plots).

from scona.

KirstieJane avatar KirstieJane commented on July 28, 2024

Here’s some code on setting up a grid rather than a subplot:

grid = gridspec.GridSpec(4, 1)

from scona.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.