You could always just save it as a list and then plot from there?
The average calculation is a bit redundant though, I'm sure theres a better
way of doing it
import pylab
import numpy
>>f = open( 'myfile.txt','r')
mass_store =[]
>>for line in f:
>>if line != ' ':
>> line = line.strip() # St
Hi,
I am having some trouble establishing how to use
matplotlib.scale.SymmetricalLogScale() to draw a log scale on the positive
and negative axis of a plot. Assuming of course that is the correct way to
go about it
The code at the moment I am looking at goes something like this, with
arbitrary da