Pyplot.jl中具有相等和共享轴的子图

时间:2015-09-27 01:41:40

标签: matplotlib julia

正如标题所暗示的那样,我想在Pyplot.jl中绘制一个相等的图(圆圈看起来像圆圈)并共享(图表有相同的限制)轴。

每当我尝试在new pythonic style for shared axes square subplots in matplotlib?中使用setp()或使用subplots()命令并访问返回的图形和轴元素时,我都会收到错误。我对PyPlot或Python也不是很熟悉。

举个例子,我想

using PyPlot

u = linspace(0, 2pi, 100)
unit_x = cos(u)
unit_y = sin(u)

A = [1 2; 0 2]
transf = [unit_x unit_y] * A'

subplot(121)
plot(unit_x, unit_y)
axis(:equal)

subplot(122)
plot(transf[:, 1], transf[:, 2])
axis(:equal)

显示与相同轴并排的图,以便它们可直接比较。现在这给了

http://imgur.com/YuESmIr

我也试过返回轴限制并将左图设置为右边,但是在调用axis(:equal)后它们没有正确返回。

1 个答案:

答案 0 :(得分:2)

你可能正在寻找

 <div class="form-group input-group" id="Div2" style="width:100%">
             <select id="sel1" class="form-control input-lg">
                 <option>--Select Question--</option>
                 <option>What is your pet name in childhood?</option>
                    <option>What is your favorite school teacher name in school?</option>
                   <option>What is your town name where you born?</option>
                    <option>Who is your favorite actor?</option>
                    <option>Which mobile you like most?</option>
             </select>
        </div>

我总是倾向于认为无花果/斧形符号对于做次要情节更有帮助,但是YMMV ...这给出了:

enter image description here