per freem wrote:
> hi eric,
>
> i tried your suggestion but it still did not work. here's a code
> snippet that demonstrates what i am trying to do:
No, I'm still baffled. If you stack 3 subplots vertically in a figure 6
inches high, they are going to be small. You can fiddle with their
siz
hi eric,
i tried your suggestion but it still did not work. here's a code snippet
that demonstrates what i am trying to do:
import matplotlib.pyplot as
plt
from scipy import
*
my_fig = plt.figure(figsize=(7,6),
dpi=100)
plot_ax1 =
plt.subplot(3,1,1)
a =
rand(100)
b = rand(100) +
rand()
plt.sc
per freem wrote:
> hi all,
>
> i have a series of subplots organized in a column (3x1). i noticed that
> if i plot them then matplotlib tends to make the x-axis long and the
> y-axis short, so the plot is really rectangular. how can i make it more
> square? if i do:
>
> f = figure(figsize=(7,6
hi all,
i have a series of subplots organized in a column (3x1). i noticed that if i
plot them then matplotlib tends to make the x-axis long and the y-axis
short, so the plot is really rectangular. how can i make it more square? if
i do:
f = figure(figsize=(7,6), dpi=100)
p1 = subplot(3,1,1)
plot