<html>

<P><BR>
Hello there. I'm trying to write a programa to set a graphic with two axis and two data sets to each axis. Anyone know some tool similar to the GD module to set this graphic, because&nbsp;with GD I'm having troubles. here is an example of what I want to do: <A href="http://libshuff.mib.uga.edu/YvsX.png">http://libshuff.mib.uga.edu/YvsX.png</A>, and below is the&nbsp;code that I'm using with GD module. </P>
<P>#!/usr/bin/perl -w<BR>
<BR>
use GD::Graph::mixed;<BR>
@data = (<BR>
&nbsp; &nbsp;["1st","2nd","3rd","4th","5th"<WBR>,"6th","7th", "8th", "9th"],<BR>
&nbsp; &nbsp;[ &nbsp; &nbsp;3, &nbsp; 4, &nbsp; 14, &nbsp; 30, &nbsp; 12, &nbsp; &nbsp;8, &nbsp; &nbsp;7, &nbsp; &nbsp;20, &nbsp; &nbsp;15],<BR>

<SCRIPT><!--
D(["mb"," &nbsp; &nbsp;[ &nbsp; &nbsp;2, &nbsp; 8, &nbsp; &nbsp;2, &nbsp; &nbsp;5, &nbsp; &nbsp;3, &nbsp;1, &nbsp; &nbsp;3, &nbsp; &nbsp; 4, &nbsp; &nbsp; 1],<br /> &nbsp; &nbsp;[ &nbsp; &nbsp;5, &nbsp; 12, &nbsp; 24, &nbsp; 33, &nbsp; 19, &nbsp; &nbsp;8, &nbsp; &nbsp;6, &nbsp; &nbsp;15, &nbsp; &nbsp;21],<br /> &nbsp; &nbsp;[ &nbsp; &nbsp;1, &nbsp; &nbsp;2, &nbsp; &nbsp;5, &nbsp; &nbsp;6, &nbsp; &nbsp;3, &nbsp;1.5, &nbsp; &nbsp;1, &nbsp; &nbsp; 3, &nbsp; &nbsp; 4],<br />);<br /><br />$my_graph \u003d new GD::Graph::mixed( );<br />$my_graph-&gt;set(<br /> &nbsp; &nbsp; &nbsp; &nbsp;x_label \u003d&gt; \'X Label\',<br /> &nbsp; &nbsp; &nbsp; &nbsp;y1_label \u003d&gt; \'Y1 label\',<br /> &nbsp; &nbsp; &nbsp; &nbsp;y2_label \u003d&gt; \'Y2 label\',<br /> &nbsp; &nbsp; &nbsp; &nbsp;title \u003d&gt; \'Using two axes\',<br /> &nbsp; &nbsp; &nbsp; &nbsp;y1_max_value \u003d&gt; 40,<br /> &nbsp; &nbsp; &nbsp; &nbsp;y2_max_value \u003d&gt; 8,<br /> &nbsp; &nbsp; &nbsp; &nbsp;y_tick_number \u003d&gt; 8,<br /> &nbsp; &nbsp; &nbsp; &nbsp;y_label_skip \u003d&gt; 2,<br /> &nbsp; &nbsp; &nbsp; &nbsp;long_ticks \u003d&gt; 1,<br /> &nbsp; &nbsp; &nbsp; &nbsp;two_axes \u003d&gt; 1,<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use_axis \u003d&gt; [1,2,1,2],<br /> &nbsp; &nbsp; &nbsp; &nbsp;legend_placement \u003d&gt; \'BR\',<br /> &nbsp; &nbsp; &nbsp; &nbsp;x_labels_vertical \u003d&gt; 1,<br /> &nbsp; &nbsp; &nbsp; &nbsp;x_label_position \u003d&gt; 1/2,<br />);<br /><br />$my_graph-&gt;set_legend( \'X\', \'XY\', \'diff-X/XY\', \'95%XY\');<br />my $gd \u003d $my_graph-&gt;plot(\\@data) or die $my_graph-&gt;error;<br />open(IMG, \'&gt;graphTest.gif\') or die &quot;N o posso abrir arquivo$!\\n&quot;;<br />binmode IMG;<br />print IMG $gd-&gt;gif;<br />close IMG;<br /><br /><br /><br /><br /><br />\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d<wbr />\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d<wbr />\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d<br /><br />&nbsp;您收到此信息是由于您订阅了 Google 论坛“BioPerl” 论坛。<br /><br />&nbsp;要向此论坛发帖,请发送电子邮件至 <a onclick\u003d\"return top.js.OpenExtLink(window,event,this)\" href\u003d\"mailto:BioPerl@googlegroups.com\">BioPerl@googlegroups.com</a> 或访问 <a onclick\u003d\"return top.js.OpenExtLink(window,event,this)\" href\u003d\"http://groups.google.com/group/BioPerl\" target\u003d_blank>",1]
);

//--></SCRIPT>
&nbsp; &nbsp;[ &nbsp; &nbsp;2, &nbsp; 8, &nbsp; &nbsp;2, &nbsp; &nbsp;5, &nbsp; &nbsp;3, &nbsp;1, &nbsp; &nbsp;3, &nbsp; &nbsp; 4, &nbsp; &nbsp; 1],<BR>
&nbsp; &nbsp;[ &nbsp; &nbsp;5, &nbsp; 12, &nbsp; 24, &nbsp; 33, &nbsp; 19, &nbsp; &nbsp;8, &nbsp; &nbsp;6, &nbsp; &nbsp;15, &nbsp; &nbsp;21],<BR>
&nbsp; &nbsp;[ &nbsp; &nbsp;1, &nbsp; &nbsp;2, &nbsp; &nbsp;5, &nbsp; &nbsp;6, &nbsp; &nbsp;3, &nbsp;1.5, &nbsp; &nbsp;1, &nbsp; &nbsp; 3, &nbsp; &nbsp; 4],<BR>
);<BR>
<BR>
$my_graph = new GD::Graph::mixed( );<BR>
$my_graph-&gt;set(<BR>
&nbsp; &nbsp; &nbsp; &nbsp;x_label =&gt; 'X Label',<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y1_label =&gt; 'Y1 label',<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y2_label =&gt; 'Y2 label',<BR>
&nbsp; &nbsp; &nbsp; &nbsp;title =&gt; 'Using two axes',<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y1_max_value =&gt; 40,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y2_max_value =&gt; 8,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y_tick_number =&gt; 8,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;y_label_skip =&gt; 2,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;long_ticks =&gt; 1,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;two_axes =&gt; 1,<BR>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use_axis =&gt; [1,2,1,2],<BR>
&nbsp; &nbsp; &nbsp; &nbsp;legend_placement =&gt; 'BR',<BR>
&nbsp; &nbsp; &nbsp; &nbsp;x_labels_vertical =&gt; 1,<BR>
&nbsp; &nbsp; &nbsp; &nbsp;x_label_position =&gt; 1/2,<BR>
);<BR>
<BR>
$my_graph-&gt;set_legend( 'X', 'XY', 'diff-X/XY', '95%XY');<BR>
my $gd = $my_graph-&gt;plot(\@data) or die $my_graph-&gt;error;<BR>
open(IMG, '&gt;graphTest.gif') or die "N o posso abrir arquivo$!\n";<BR>
binmode IMG;<BR>
print IMG $gd-&gt;gif;<BR>
close IMG;<BR>
</P>
<P>&nbsp;</P>
</html><BR>