What is the best way to graph scatter plots in C++?
Do you write data to a file and use another tool? Is there a library like matplotlib in Python?
|
What is the best way to graph scatter plots in C++? Do you write data to a file and use another tool? Is there a library like matplotlib in Python?
| |||
|
feedback
|
|
I always write out data and then using gnuplot to create my graphs. It is by far the best way I have found of producing graphs in a variety of formats: eps, png, jpeg, xpm, you name it.
Will give you a quick scatter plot. Then you can adjust it and what not using other gnuplot commands. If you are involved in sciences, then learning | |||
|
feedback
|
|
If you are looking for a C++ library rather than I independent plotting tool like gnuplot, I would consider the following: dislin seems to be the more interesting of the two. Here is a description extracted from the wikipedia article:
| |||
|
feedback
|
|
This is certainly not the best way but I usually write output files that can be read by R and use this, along with an appropriate script, to plot the graphs. | |||
|
feedback
|
|
Very heavy solution: you could link against ROOT, which will do just about anything you want:
Sure, its a bit much for most people, but it does do exactly what you asked for. I use it because I know it and it is already on my machines becase I'm that kind of physicist. | |||
|
feedback
|
|
Good old GNU, they have everything... | |||
|
feedback
|
|
The problem here is that C++, unlike Java for example, does not have built-in GUI or graphics. If you want to generate graphs with C++ you would need to use a GUI library available for your OS. There are free GUI libraries, many cross-plaform such as Qt or GTK. However, as other people have pointed out, the easiest thing for you to do would be to save the data into a text file, and use another program to generate the graph. gnuplot is definitely a good choice. It comes standard with most linux distros, and you get for Windows under cygwin. | |||
|
feedback
|
|
If you're familiar with matplotlib, you can embed python in C/C++ applications. Depending on what you want it for, this might be a quick solution. | |||
|
feedback
|
Regards plotting in C++ for anyone didn't do it yetI will say what I did to plot Graphs in C++ Hope it helps in sha' Allah
You will get many and many graphs, choose your appropriate graph, customize your core, and ENJOY :) | ||||
|
feedback
|
|
Chart Director has bindings for C++. I've used their .Net libraries, and I've been pretty happy with them. It's a pretty cheap library, and gives you the power to do all sorts of different charts. | |||
|
feedback
|