A feature of online gnuplot allows you to place your data in two columns separated by space, and it understands how the "x" and "y" axes
I'm trying to use python gnuplot. Assuming it would be similar to the online feature, I put "#" in what was not given and tried to plot. However, I found only tutorial asking to separate the x-axis from the y-axis into two separate lists.
I have a list (which can also be in string format), as in the example below:
lista = ['59.99167\t-3180\r\n', '60.00000\t-3181\r\n']
string = 59.99167 -3180
60.00000 -3181
My questions are: how do I easily break my list (in the "\ t" character) or string in two new lists (x and y), with my data separated? Is there any way I can use gnuplot python without having to do this, as it does in gnuplot online?