From: Jae-Joon L. <lee...@gm...> - 2009-10-28 22:08:12
|
On Tue, Oct 27, 2009 at 11:12 PM, Dr. Phillip M. Feldman <pfe...@ve...> wrote: > (1) Not only is the y-axis for dependent variable #1 blue (as it should be), > but the entire frame around the plot is blue. > at line 158, you're changing the color of all spines. Change the color of spine that you only want to change. > (2) The y-axis for dependent variable #2 has two sets of tick labels. The > set in black contains the correct values in the correct positions, but has > the wrong color. The other set of tick labels has the correct color (dark > red), but the values and locations are wrong. (In fact, these are same > values and positions as for dependent variable #1). At line 113, you're creating 4 twinx axes, instead of 3, i.e, the figure has total of 5 axes. Also, I recommend you to use the pythonic convention that list index starts from 0. Regards, -JJ |