From: Nathan G. <nat...@gm...> - 2015-05-15 21:41:26
|
Hi all, This is a bit of a case of lazy mailing list, but I'm hoping there might be some experts here who can point me in the right direction. Does anyone know of a good resource to pull a color cycle for line plots that are good for color-blind readers? I'm currently writing a paper that includes a number of plots that include multiple line plots in the same axes, and it would be nice if I'm not alienating a significant fraction of my readers with a poor color choice. Thanks very much for your help! -Nathan |
From: Thomas C. <tca...@gm...> - 2015-05-15 21:50:11
|
See https://github.com/matplotlib/matplotlib/pull/2871 and the links there in. This colormap should be in 1.4.x as `'Wistia'`. http://matplotlib.org/users/colormaps.html has some references. There is an open PR to add a color-blind filter an any artist https://github.com/matplotlib/matplotlib/pull/3279 but I am not sure of it's state. Tom On Fri, May 15, 2015 at 5:43 PM Nathan Goldbaum <nat...@gm...> wrote: > Hi all, > > This is a bit of a case of lazy mailing list, but I'm hoping there might > be some experts here who can point me in the right direction. > > Does anyone know of a good resource to pull a color cycle for line plots > that are good for color-blind readers? I'm currently writing a paper that > includes a number of plots that include multiple line plots in the same > axes, and it would be nice if I'm not alienating a significant fraction of > my readers with a poor color choice. > > Thanks very much for your help! > > -Nathan > > ------------------------------------------------------------------------------ > 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 > |
From: Eric F. <ef...@ha...> - 2015-05-15 21:59:36
|
On 2015/05/15 11:41 AM, Nathan Goldbaum wrote: > Hi all, > > This is a bit of a case of lazy mailing list, but I'm hoping there might > be some experts here who can point me in the right direction. > > Does anyone know of a good resource to pull a color cycle for line plots > that are good for color-blind readers? I'm currently writing a paper > that includes a number of plots that include multiple line plots in the > same axes, and it would be nice if I'm not alienating a significant > fraction of my readers with a poor color choice. You might want to cycle line types and/or thicknesses along with colors. You could also check out the seaborn line color palettes. http://stanford.edu/~mwaskom/software/seaborn/ Eric > > Thanks very much for your help! > > -Nathan > > > ------------------------------------------------------------------------------ > 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 > |
From: Benjamin R. <ben...@ou...> - 2015-05-15 22:07:34
|
I am a huge fan of cycling line styles in conjunction with cycling colors in general. There is a cycler PR that achieves that goal fairly nicely: https://github.com/matplotlib/matplotlib/pull/4258 On Fri, May 15, 2015 at 5:59 PM, Eric Firing <ef...@ha...> wrote: > On 2015/05/15 11:41 AM, Nathan Goldbaum wrote: > > Hi all, > > > > This is a bit of a case of lazy mailing list, but I'm hoping there might > > be some experts here who can point me in the right direction. > > > > Does anyone know of a good resource to pull a color cycle for line plots > > that are good for color-blind readers? I'm currently writing a paper > > that includes a number of plots that include multiple line plots in the > > same axes, and it would be nice if I'm not alienating a significant > > fraction of my readers with a poor color choice. > > You might want to cycle line types and/or thicknesses along with colors. > You could also check out the seaborn line color palettes. > > http://stanford.edu/~mwaskom/software/seaborn/ > > Eric > > > > > Thanks very much for your help! > > > > -Nathan > > > > > > > ------------------------------------------------------------------------------ > > 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 > > > > > > ------------------------------------------------------------------------------ > 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 > |