I have data files in two formats, one being .csv and the other being .dat. Is it possible to plot the data from these two files on the same graph?
For plotting the data from the .dat file I used the following command:
plot "test.dat" using 1:2 with lines
I intend to plot the data from .dat file using continuous line. This I am able to achieve.
And for plotting the data from the .csv file I used the following command:
set datafile separator ','
plot "test1.csv" using 1:2
I would like to plot the data from .csv file using dashed lines. i.e., something similar to this "- - - - - -"
A line of data from .dat file is
-8.14257e-01 2.04276e+00 0.00000e+00
and from .csv is
3.12487-03,1.58743-03
plot "test1.csv" using 1:2, "test.dat" using 1:2 w lines?set datafile separator ','Whereas if I useset datafile separator ','data from "test.dat" is not plotted.