User tatwright - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T18:36:47Zhttp://stackoverflow.com/feeds/user/40849http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332289/how-do-you-change-the-size-of-figures-drawn-with-matplotlib10How do you change the size of figures drawn with matplotlib?tatwright2008-12-01T21:24:44Z2009-03-12T12:41:35Z
<p>How do you change the size of figure drawn with matplotlib?</p>
http://stackoverflow.com/questions/327576/how-do-you-plot-bar-charts-in-gnuplot1How do you plot bar charts in gnuplot?tatwright2008-11-29T14:29:21Z2009-01-19T03:34:55Z
<p>How do you plot bar charts in gnuplot with text labels? </p>
<p>(Sorry - I'm answering my own question here - as it suggest in the first entry of the faq)</p>
http://stackoverflow.com/questions/332289/how-do-you-change-the-size-of-figures-drawn-with-matplotlib/335848#335848-3Answer by tatwright for How do you change the size of figures drawn with matplotlib?tatwright2008-12-02T23:49:20Z2008-12-02T23:49:20Z<p>Hmm, I appear to be unable to use google...</p>
http://stackoverflow.com/questions/332289/how-do-you-change-the-size-of-figures-drawn-with-matplotlib/332311#3323111Answer by tatwright for How do you change the size of figures drawn with matplotlib?tatwright2008-12-01T21:28:56Z2008-12-01T21:28:56Z<p>The following seems to work:</p>
<pre>
from pylab import *
rcParams['figure.figsize'] = 5, 10
</pre>
<p>This makes the figure's width 5 inches, and its height 10 <b>inches</b>. </p>
<p>The Figure class then uses this as the default value for one of its arguments.</p>
<p><hr>
Does anyone know more direct mechanisms?</p>
http://stackoverflow.com/questions/327576/how-do-you-plot-bar-charts-in-gnuplot/327578#3275782Answer by tatwright for How do you plot bar charts in gnuplot?tatwright2008-11-29T14:30:48Z2008-11-29T14:30:48Z<pre>
plot "data.dat" using 2: xtic(1) using histogram
</pre>
<p>Here data.dat contains data of the form</p>
<pre>
title 1
title2 3
"long title" 5
</pre>
http://stackoverflow.com/questions/327020/why-are-floating-point-values-so-prolific/327032#3270321Answer by tatwright for Why are floating point values so prolific?tatwright2008-11-29T01:52:36Z2008-11-29T01:52:36Z<p>Some things are rather hard to do without using inexact arithmetic, working out sin(22) exactly is perhaps slightly more complex than most hardware could deal with.</p>
http://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module/326881#3268812Answer by tatwright for How can I dynamically get the set of classes from the current python module?tatwright2008-11-28T23:17:31Z2008-11-28T23:17:31Z<pre>
classes = [x for x in globals().values() if isinstance(x, type)]
</pre>
http://stackoverflow.com/questions/324797/is-there-a-sweet-efficient-way-to-call-the-same-method-twice-with-two-different/324872#3248722Answer by tatwright for Is there a sweet, efficient way to call the same method twice with two different arguments?tatwright2008-11-28T00:37:10Z2008-11-28T00:37:10Z<p>In some languages (e.g python) there is the concept of a reduce or fold function - which is a functional way of representing loops over all of the elements in a list.</p>
<p>Using reduce you can write something like this</p>
<pre>
return reduce(lambda a, x: a.Replace(x, ''), ['hello', 'world'], initial)
</pre>
<p>which is the same as</p>
<pre>
a = initial
for x in ['hello', 'world']:
a = a.Replace(x, '')
return a
</pre>
<p>In python you can also pronounce this as</p>
<pre>
reduce(str.replace, ['hello', 'world'], initial).
</pre>
<p>Of course whether this is simpler is another question entirely - but a lot of people certainly enjoy writing code like this.</p>
http://stackoverflow.com/questions/319065/cross-domain-ajax-request-from-within-js-file/319221#3192211Answer by tatwright for Cross domain Ajax request from within js file.tatwright2008-11-25T23:09:52Z2008-11-25T23:09:52Z<p>There is a <a href="http://www.w3.org/TR/access-control/" rel="nofollow">w3c proposal</a> for allowing sites to specify other sites which are allowed to make cross site queries to them. (Wikipedia might want to allow all request for articles, say, but google mail wouldn't want to allow requests - since this might allow any website open when you are logged into google mail to read your mail).</p>
<p>This might be available at some point in the future.</p>