From: Thomas C. <tca...@gm...> - 2015-05-24 18:20:40
|
Shawn, This might better be sent to the IPython mailing lists. Tom On Tue, May 19, 2015 at 5:56 PM Yuxiang Wang <yw...@vi...> wrote: > Here is what I did: > > Put a 00_matplotlib_rc.py in ipython's profile_default/startup folder > (you might need to run ipython profile create, or ipython profile > locate to create/find them), and in the file specify my matplotlib rc > parameters. For example: > > import matplotlib as mpl > > > # Figure formatting > mpl.rcParams['savefig.dpi'] = 300 > mpl.rcParams['figure.figsize'] = (3.27, 3.27) > > # Font setting > mpl.rcParams['mathtext.default'] = 'regular' > mpl.rcParams['font.family'] = ['sans-serif'] > mpl.rcParams['font.sans-serif'] = ['Arial'] > mpl.rcParams['font.size'] = 8 > mpl.rcParams['pdf.fonttype'] = 42 > mpl.rcParams['ps.fonttype'] = 42 > > # Line properties > mpl.rcParams['lines.linewidth'] = 1. > mpl.rcParams['lines.markersize'] = 4 > > # Legends > mpl.rcParams['legend.frameon'] = False > mpl.rcParams['legend.fontsize'] = 8 > mpl.rcParams['legend.handlelength'] = 3 > > # Subplot frame line > mpl.rcParams['axes.linewidth'] = .5 > > > > I would be happy to know if there's a better/different way to do it. > > Shawn > > On Tue, May 19, 2015 at 5:49 PM, mato <mat...@ya...> wrote: > > This might be the case (I'm running Anaconda/Spyder/Ipython) however so > far I > > haven't been able to locate the appropriate settings file... > > > > > > Yuxiang Wang wrote > >> Are you using IPython QtConsole / Notebook? I think they have their > >> own settings on their backend. > >> > >> Shawn > > > > > > > > > > > > -- > > View this message in context: > http://matplotlib.1069221.n5.nabble.com/matplotlibrc-has-no-effect-on-the-plot-windows7-tp45573p45575.html > > Sent from the matplotlib - users mailing list archive at Nabble.com. > > > > > ------------------------------------------------------------------------------ > > One dashboard for servers and applications across Physical-Virtual-Cloud > > Widest out-of-the-box monitoring support with 50+ applications > > Performance metrics, stats and reports that give you Actionable Insights > > Deep dive visibility with transaction tracing using APM Insight. > > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y > > _______________________________________________ > > Matplotlib-users mailing list > > Mat...@li... > > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > > > > -- > Yuxiang "Shawn" Wang > Gerling Research Lab > University of Virginia > yw...@vi... > +1 (434) 284-0836 > https://sites.google.com/a/virginia.edu/yw5aj/ > > > ------------------------------------------------------------------------------ > One dashboard for servers and applications across Physical-Virtual-Cloud > Widest out-of-the-box monitoring support with 50+ applications > Performance metrics, stats and reports that give you Actionable Insights > Deep dive visibility with transaction tracing using APM Insight. > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |