2016-09-22 1 views
0

J'essaie de changer le colorbar sur mon terrain networkx. La barre devient plus large et smooshes aussi mon networkx terrain original (à gauche) quand j'ajoute le colorbar là (droite).Comment arrêter `colorbar` de remodeler le tracé de` networkx`? (Python 3)

Comment puis-je rendre mon colorbar plus mince et ne pas modifier mon graphique original networkx?

Mon code ci-dessous avec colorbar avec la permission de https://stackoverflow.com/users/5285918/lanery mais utilisé avec un plus grand réseau.

# Set up Graph 
DF_adj = pd.DataFrame(np.array(
    [[1, 0, 1, 1], 
    [0, 1, 1, 0], 
    [1, 1, 1, 1], 
    [1, 0, 1, 1] ]), columns=['sepal length (cm)', 'sepal width (cm)', 'petal length (cm)', 'petal width (cm)'], index=['sepal length (cm)', 'sepal width (cm)', 'petal length (cm)', 'petal width (cm)']) 

G = nx.Graph(DF_adj.as_matrix()) 
G = nx.relabel_nodes(G, dict(zip(range(4), ['sepal length (cm)', 'sepal width (cm)', 'petal length (cm)', 'petal width (cm)']))) 

# Color mapping 
color_palette = sns.cubehelix_palette(3) 
cmap = {k:color_palette[v-1] for k,v in zip(['sepal length (cm)', 'sepal width (cm)', 'petal length (cm)', 'petal width (cm)'],[2, 1, 3, 2])} 

# Draw 
fig, ax = plt.subplots() 
nx.draw(G, node_color=[cmap[node] for node in G.nodes()], with_labels=True, ax=ax) 

sm = plt.cm.ScalarMappable(cmap=ListedColormap(color_palette), 
          norm=plt.Normalize(vmin=0, vmax=3)) 
sm._A = [] 
fig.colorbar(sm, ticks=range(1,4)) 

enter image description here

Répondre

3

chemin devrait être plus facile de tracer la colorbar sur son propre axe et jouer avec les paramètres [gauche, bas, largeur, hauteur].

cbaxes = fig.add_axes([0.9, 0.1, 0.015, 0.8]) 
sm = plt.cm.ScalarMappable(cmap=ListedColormap(color_palette), 
          norm=plt.Normalize(vmin=0, vmax=3)) 
sm._A = [] 
plt.colorbar(sm, cax=cbaxes, ticks=range(4)) 

Source: positioning the colorbar