visualization of temporal networks

Hi,

Any plans on supporting visualization of temporal dynamics? Or is there any
way of doing that with the current feature set?

Regards,
Håkan

attachment.html (224 Bytes)

You can certainly make animations which show a time-varying graph. Some
examples of this are shown here:

    http://graph-tool.skewed.de/static/doc/demos/animation.html

Cheers,
Tiago

Hi,

I would like to color my vertices based on their degree, the default
color scheme give me a sort of from "warm to cold" coloring. How can I
specify the color scale myself, i.e. using grey scale or from red to
blue etc.

Thanks,

Xiaohu

The graph_draw() function takes a 'vcmap' parameter which specifies the
colormap which should be used for the vertices. You can choose any
matplotlib colormap you want, or define your own:

    http://matplotlib.org/examples/color/colormaps_reference.html

You can also specify the colors yourself via a property map with either
a string color code, or a vector with RGBA values.

Best,
Tiago

Thanks so much for the quick reply!

attachment.html (1.68 KB)