Its some time series stock data I am plotting. I.e. x-axis is date while y is stock price.
My datafile "Cir2.txt" looks like this:
2/25/2016,18600,10/23/2008,11000
I would like to plot a circle with center at (2/25/2016,18600) and with radius of length that will have the point (10/23/2008,11000) be on the circle itself.
I plot it like this:
plot 'Cir2.txt' u 1:2:timecolumn((sqrt((timecolumn($1,"%m/%d/%Y")-timecolumn($3,"%m/%d/%Y"))**2 + ($2-$4)**2))/2) with circles
However, the radius plotted seems to be much shorter and it doesn't pass through the point (10/23/2008,11000) as expected. It seems the radius parameter need a very huge number to show something meaningful. And seems that related to the fact that x-axis is a date.
