A quick question about a gnuplot.
I have two graphs, ploted from file, like this:
plot "t2" using 1:75 with linespoints title "crop 20",\
"t2" using 1:11 with linespoints title "crop 30"
Now I want to identify points on both graphs if they have identical height e.g Y coordinate.
It could be a different colour, or a perfect solution would be to draw a line between them.
Any ideas?
Thanks a lot.
EDIT
Thanks for the reply Sunhwan Jo, method suggested works fine, as long as similar values appear in the same order. See the image

Two graphs share several more points in the same height, but its not picked up due to length difference.
You may use external program to filter out data points that have same data in two different column (here I’ve examined if 75th and 11th column has same entry).
EDIT:
Okay, above will not work if you would like to show the data points that have same data in different rows. AWK script will be more elaborated. I have tried as below, hope this helps.
Here’s test data.
And the gnuplot command (note some obvious difference in column designation):
Resulting plot: