0
A gnuplot online feature allows you to place your data in two columns separated by space, and it understands how the axes "x" and "y"
I am trying to use gnuplot python. Assuming it would be similar to the online resource, I put "#" on 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 distinct 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 character " t") or string into two new lists(x and y), with my data separate? Is there any way I can use gnuplot python without having to do this, as occurs in gnuplot online?
It works well. Thank you!!
– Bruno Santos