<div dir="ltr">I think argument 2 is actually the third argument (zero-based numbering), and if so, its complaining that the variables "aa" and "dd" are of type integer, whereas type string is expected. Try wrapping them in tostring(), like:<div><br></div><div>   dum1(i) = gsn_add_text(wks,plot1,tostring(aa(i)),0.20,0.90,txres)<br>    dum2(i) = gsn_add_text(wks,plot2,tostring(dd(i)),0.20,0.90,txres)<br></div><div><br></div><div>That said, the message was just a warning, and there are some other issues. As with any of the gsn_add_xxxx() functions, you'll need to add these two resources:<br></div><div><br></div><div>  res@gsnDraw  = False</div><div>  res@gsnFrame = False</div><div><br></div><div>and then follow the loop containing the gsn_add_text calls with something like:</div><div><br></div><div>  draw(plot1)</div><div>  frame(wks)</div><div>  draw(plot2)</div><div>  frame(wks)</div><div><br></div><div>Hope that helps,</div><div>Rick</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Apr 2, 2020 at 9:15 AM Vanúcia Schumacher via ncl-talk <<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">




<div dir="ltr">
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<span style="font-size:12pt;color:rgb(51,51,51)">Hi NCL users</span></div>
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<span style="font-size:12pt;color:rgb(51,51,51)">I am using the example of bar chart "</span><span><span style="font-family:Calibri,Helvetica,sans-serif;background-color:rgb(255,255,255);font-size:12pt;color:rgb(51,51,51);display:inline">unique_5.ncl" </span></span><span style="font-size:12pt;color:rgb(51,51,51)">(attachment)
 and I would like to add caption text to each bar, but the following warning returns.</span><span><br>
</span>
<div><br>
</div>
</div>
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<span style="font-size:12pt;color:rgb(51,51,51)">warning: Argument 2 of the current function or procedure was coerced to the appropriate type and thus will not change if the function or procedure modifies its value</span><span><br>
</span><span></span><br>
</div>
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<div style="margin:0px;font-size:14pt;font-family:Calibri,Helvetica,sans-serif">
<span style="margin:0px"></span></div>
<span style="font-size:12pt;color:rgb(51,51,51)">Does anyone have a guess as could add in this example?</span>
<div style="margin:0px;font-size:14pt;font-family:Calibri,Helvetica,sans-serif">
<br>
</div>
<div style="margin:0px;font-size:14pt;font-family:Calibri,Helvetica,sans-serif">
<span style="font-size:12pt;color:rgb(51,51,51)">Thanks</span></div>
<br>
</div>
<div style="font-family:Calibri,Helvetica,sans-serif;font-size:14pt;color:rgb(0,0,0)">
<br>
</div>
</div>

_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></blockquote></div>