How gnuplot convert a string to integer
I wonder if there is an easy way to convert a string to integer. For example, I want a way as like strtointeger("2") to return an integer 2.
columns="2 3"
plot for [i in columns] "mydata.dat" using 1:strtointeger(i)
