<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Name Unresolved: Framebox in access or evaluation of 'Framebox' in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401261#M65229</link>
    <description>&lt;P&gt;You should find a list of display box references stored in &lt;STRONG&gt;biv&lt;/STRONG&gt;. So you need to iterate over the list. You code looks good but it should be inside this loop through the list.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jul 2021 14:29:59 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2021-07-15T14:29:59Z</dc:date>
    <item>
      <title>Name Unresolved: Framebox in access or evaluation of 'Framebox'</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401231#M65224</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am trying to create a function and I don't know what seems to be the problem why it keeps on prompting the error&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Name Unresolved: Framebox in access or evaluation of 'Framebox' , Framebox( 1 ) /*###*/&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;bivpolyfit = Function( { x_param, y_param, grouping },
	biv = Bivariate( X( Column( x_param ) ), Y( Column( y_param ) ), by( Column( holder ), Column( type ) ), 
	GroupBy( column( build ) ), &amp;lt;&amp;lt; Fit Polynomial( 2, {Line Width( 2 )}));
	rbiv = biv &amp;lt;&amp;lt; Report;
	rbiv[Framebox( 1 )] &amp;lt;&amp;lt; {Marker Size( 3 )};
	rbiv[Axisbox( 2 )] &amp;lt;&amp;lt; Tick Font( style( 0 ), size( 9 ) ) &amp;lt;&amp;lt; Show Major Grid( 1 ) &amp;lt;&amp;lt; Show Minor Grid( 1 ) &amp;lt;&amp;lt; Show Minor Ticks( 1 ) &amp;lt;&amp;lt; {Min( eval(xmin[j]) ), Max( eval(xmax[j]) )/*, Inc( incr[j] )*/};
	rbiv[Axisbox( 1 )] &amp;lt;&amp;lt; Tick Font( style( 0 ), size( 9 ) ) &amp;lt;&amp;lt; Show Major Grid( 1 ) &amp;lt;&amp;lt; Show Minor Grid( 1 ) &amp;lt;&amp;lt; Show Minor Ticks( 1 ) &amp;lt;&amp;lt; {Min( eval(ymin[j]) ), Max( eval(ymax[j]) )/*, Inc( incr[j] )*/};
	rbiv[TextEditBox( 2 )] &amp;lt;&amp;lt; Set Font Size( 10 ) &amp;lt;&amp;lt; Set Font Style( "Bold" );
	rbiv[TextEditBox( 1 )] &amp;lt;&amp;lt; Set Font Size( 10 ) &amp;lt;&amp;lt; Set Font Style( "Bold" );
	rbiv[Outline Box( 1 )] &amp;lt;&amp;lt; Set Title( y_param||" vs "||x_param );
	rbiv["Polynomial Fit Degree=2 ?"] &amp;lt;&amp;lt; Close All Like This;
	rbiv[Framebox( 1 )] &amp;lt;&amp;lt; Row Legend( Column( grouping ), Color( 1 ), Marker( 0 ), Color Theme("JMP Default"), Continuous Scale( 0 ) );
	rbiv[Framebox( 1 )] &amp;lt;&amp;lt; Row Legend( Column( build ), Color( 0 ), Marker( 1 ), Marker Theme("Solid") );
	rbiv[BorderBox(3)] &amp;lt;&amp;lt; Delete;
	rbiv[BorderBox(2)] &amp;lt;&amp;lt; Delete;
	pbiv = rbiv[OutlineBox( 1 )] &amp;lt;&amp;lt; get picture;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:16:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401231#M65224</guid>
      <dc:creator>29755</dc:creator>
      <dc:date>2023-06-11T11:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Name Unresolved: Framebox in access or evaluation of 'Framebox'</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401261#M65229</link>
      <description>&lt;P&gt;You should find a list of display box references stored in &lt;STRONG&gt;biv&lt;/STRONG&gt;. So you need to iterate over the list. You code looks good but it should be inside this loop through the list.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 14:29:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401261#M65229</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-07-15T14:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Name Unresolved: Framebox in access or evaluation of 'Framebox'</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401272#M65231</link>
      <description>&lt;P&gt;The Bivariate platform kicks out a separate report for each of the BY Groups.&amp;nbsp; Therefore your reference to rbiv needs to reference which of the reports to access.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;rbiv[1][Framebox( 1 )] &amp;lt;&amp;lt; {Marker Size( 3 )};&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Jul 2021 14:44:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Unresolved-Framebox-in-access-or-evaluation-of-Framebox/m-p/401272#M65231</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-07-15T14:44:04Z</dc:date>
    </item>
  </channel>
</rss>

