User tatwright - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T18:36:47Z http://stackoverflow.com/feeds/user/40849 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/332289/how-do-you-change-the-size-of-figures-drawn-with-matplotlib 10 How do you change the size of figures drawn with matplotlib? tatwright 2008-12-01T21:24:44Z 2009-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-gnuplot 1 How do you plot bar charts in gnuplot? tatwright 2008-11-29T14:29:21Z 2009-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 -3 Answer by tatwright for How do you change the size of figures drawn with matplotlib? tatwright 2008-12-02T23:49:20Z 2008-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#332311 1 Answer by tatwright for How do you change the size of figures drawn with matplotlib? tatwright 2008-12-01T21:28:56Z 2008-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#327578 2 Answer by tatwright for How do you plot bar charts in gnuplot? tatwright 2008-11-29T14:30:48Z 2008-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#327032 1 Answer by tatwright for Why are floating point values so prolific? tatwright 2008-11-29T01:52:36Z 2008-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#326881 2 Answer by tatwright for How can I dynamically get the set of classes from the current python module? tatwright 2008-11-28T23:17:31Z 2008-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#324872 2 Answer by tatwright for Is there a sweet, efficient way to call the same method twice with two different arguments? tatwright 2008-11-28T00:37:10Z 2008-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#319221 1 Answer by tatwright for Cross domain Ajax request from within js file. tatwright 2008-11-25T23:09:52Z 2008-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>