Difference between revisions of "Plotting and visualization tools"

From Wiki Max
Jump to navigation Jump to search
(Created page with "Now we see some simple features of the software we will use to visualize and plotting data. ==Gnuplot== Gnuplot is a powerful (and free!) program for plotting functions and da...")
 
Line 2: Line 2:
 
==Gnuplot==
 
==Gnuplot==
 
Gnuplot is a powerful (and free!) program for plotting functions and data, also fit and interpolation can be done.
 
Gnuplot is a powerful (and free!) program for plotting functions and data, also fit and interpolation can be done.
Gnuplot allows realizing 1D and 2D plots, as well as contour plot and heatmaps.
+
Gnuplot allows realizing 1D and 2D plots, as well as contour plot and heatmaps. If you are using the QM virtual machine the software is already installed.
 +
 
 +
Let'start creating a data file with random numbers e.g.:
 +
 
 +
  $> cat > data.txt <<EOF
 +
  0 24
 +
  1 33
 +
  2 42
 +
  3 24
 +
  EOF

Revision as of 12:43, 25 November 2020

Now we see some simple features of the software we will use to visualize and plotting data.

Gnuplot

Gnuplot is a powerful (and free!) program for plotting functions and data, also fit and interpolation can be done. Gnuplot allows realizing 1D and 2D plots, as well as contour plot and heatmaps. If you are using the QM virtual machine the software is already installed.

Let'start creating a data file with random numbers e.g.:

 $> cat > data.txt <<EOF 
 0 24
 1 33
 2 42
 3 24 
 EOF