Difference between revisions of "Plotting and visualization tools"

From Wiki Max
Jump to navigation Jump to search
Line 7: Line 7:
  
 
   $> cat > data.txt <<EOF  
 
   $> cat > data.txt <<EOF  
   0 24
+
   >0 24
   1 33
+
   >1 33
   2 42
+
   >2 42
   3 24  
+
   >3 24  
 
   EOF
 
   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