Plotting graphs in C++

You could try https://github.com/lava/matplotlib-cpp, which looks like it is just a wrapper around matplotlib anyway, so you are still calling/using Python and matplotlib in the end. With this you probably can copy your code nearly verbatim to “C++”.

How to create Gephi network graphs from Python?

I have just found out about GephiStreamer. https://pypi.python.org/pypi/GephiStreamer Using this package one can send instructions from python to Gephi to create nodes and edges in Gephi. Similarly I want to do everything in Gephi through Python. Here is what I typically do. ex: steps: load nodes load edges calculate betweeness centrality change the size/color of … Read more

.NET graph library around?

Use a combination of QuickGraph (GitHub, CodePlex) and Graph# for WPF (GitHub fork, CodePlex) – both top notch libraries. They work really well for me but the documentation for Graph# is almost non-existant.

Good Java graph algorithm library?

If you were using JGraph, you should give a try to JGraphT which is designed for algorithms. One of its features is visualization using the JGraph library. It’s still developed, but pretty stable. I analyzed the complexity of JGraphT algorithms some time ago. Some of them aren’t the quickest, but if you’re going to implement them on … Read more

How to increase plt.title font size?

fontsize can be assigned inside dictionary fontdict which provides additional parameters fontweight, verticalalignment , horizontalalignment The below snippet should work plt.title(‘Temperature \n Humidity’, fontdict = {‘fontsize’ : 100})