<div>You can use numpy's loadtxt() to load columns of data into memory and use the plot function to plot them.<br><a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.loadtxt.html">http://docs.scipy.org/doc/numpy/reference/generated/numpy.loadtxt.html</a></div>
<div> </div><div>so in yt it would look something like</div><div> </div><div>from yt.mods import *</div><div>...some yt stuff that saves to myfile.txt...</div><div> </div><div>import numpy as na</div><div>col1, col2 = na.loadtxt("myfile.txt", usecols=(0,1))</div>
<div>pylab.plot(col1,col2)</div><div> </div><div>This is assuming your ASCII data is in columns.  Essentially starting from import numpy, this is just a matplotlib script which can be separate from the yt stuff above.</div>
<div> </div><div>From</div><div>G.S.</div><div> </div><div class="gmail_quote">On Mon, Jul 2, 2012 at 12:50 AM, Amol Holkundkar <span dir="ltr"><<a href="mailto:amol.h@gmx.com" target="_blank">amol.h@gmx.com</a>></span> wrote:<br>
<blockquote style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="gmail_quote">Dear All,<br>
<br>
How we can use yt to plot ASCII files like gnuplot. Any simple example<br>
will be really appreciated.<br>
<br>
Thanks,<br>
<br>
Regards<br>
Amol<br>
<br>
_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
</blockquote></div><br>