On Thursday, May 24, 2012, Jerzy Karczmarczuk wrote:
> Gurus,
>
> Windows XP, matplotlib 1.1.0. Backend Tk, but the same elsewhere.
>
> Programme:
>
> import matplotlib as mpl
> import matplotlib.pyplot as plt
> mpl.rcParams['lines.linewidth'] = 2
> mpl.rcParams['lines.color'] = 'r'
>
> x=range(80
Gurus,
Windows XP, matplotlib 1.1.0. Backend Tk, but the same elsewhere.
Programme:
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.rcParams['lines.linewidth'] = 2
mpl.rcParams['lines.color'] = 'r'
x=range(800)
y=[t for t in x]
plt.plot(x,y)
plt.show()
# ==