¡@

Home 

python Programming Glossary: pyplot.xscale

What is the difference between 'log' and 'symlog'?

http://stackoverflow.com/questions/3305865/what-is-the-difference-between-log-and-symlog

In matplotlib I can set the axis scaling using either pyplot.xscale or Axes.set_xscale . Both functions accept three different scales.. is the default mode so this next line is redundant pyplot.xscale 'linear' # How to treat negative values # 'mask' will treat.. 'mask' is the default so the next two lines are equivalent pyplot.xscale 'log' pyplot.xscale 'log' nonposx 'mask' # 'clip' will map all..