Maple GNUPLOT 'file1.dat 2nd column' vs 'file2.dat 1st column'

AI Thread Summary
To plot the second column of 'file1.dat' against the first column of 'file2.dat' in Gnuplot, the user needs to use the plot command with the appropriate file and column specifications. The basic syntax involves using the 'using' keyword to specify the columns from each file. An example command would be: "plot 'file2.dat' using 1:(system('awk ''{print $2}'' file1.dat')) with lines". This approach allows for the extraction of the second column from 'file1.dat' while plotting it against the first column of 'file2.dat'. Users are encouraged to explore Gnuplot documentation and online examples for further clarification and advanced plotting techniques.
Abhisheko07
Messages
5
Reaction score
0
TL;DR Summary
How can I plot 'file1.dat 2nd column' vs 'file2.dat 1st column' in Gnuplot?
How can I plot 'file1.dat 2nd column' vs 'file2.dat 1st column' in Gnuplot?
If someone can help me with what code I need to write to do it, it will be very helpful.
 
Physics news on Phys.org
Have you looked for gnuplot examples online? Surely someone has run into the same problem before.
 

Similar threads

Replies
1
Views
7K
Replies
6
Views
3K
Replies
14
Views
11K
Replies
1
Views
4K
Replies
6
Views
3K
Replies
1
Views
668
Back
Top