<?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: Specifying axial value as rotatable in custom design in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605220#M80770</link>
    <description>&lt;P&gt;Welcome to the community. &amp;nbsp;Have you tried DOE&amp;gt;Classical&amp;gt;Response Surface&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50461iE5690AC5B164483E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" alt="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For categorical, there are options.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.0/?os=mac&amp;amp;source=application#page/jmp/response-surface-design-with-constraints-and-categorical-factor.shtml#" target="_blank"&gt;https://www.jmp.com/support/help/en/17.0/?os=mac&amp;amp;source=application#page/jmp/response-surface-design-with-constraints-and-categorical-factor.shtml#&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Feb 2023 14:59:15 GMT</pubDate>
    <dc:creator>statman</dc:creator>
    <dc:date>2023-02-24T14:59:15Z</dc:date>
    <item>
      <title>Specifying axial value as rotatable in custom design</title>
      <link>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605006#M80754</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I am trying to create a custom DOE in order to maximize the response yield of a target quantity as a function of two continuous factors and one 2nd level categorical factor. The interactions of these factors are of the third order, and I am specifying 2 center points. However, I also want to define axial values to set axial positions such that I get a rotatable surface, similar to that of a central-composite design in surface response DOE.&lt;BR /&gt;&lt;BR /&gt;I've been stumped on how to do this, and would appreciate any advice!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:33:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605006#M80754</guid>
      <dc:creator>tokiwon</dc:creator>
      <dc:date>2023-06-08T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Specifying axial value as rotatable in custom design</title>
      <link>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605056#M80756</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/46826"&gt;@tokiwon&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome in the Community !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There might be an option for the case you describe : when clicking on the red triangle in the "Custom Design" platform, you can change the value of the Sphere Radius :&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/17.0/?os=win&amp;amp;source=application#page/jmp/custom-design-options.shtml" target="_blank"&gt;Custom Design Options (jmp.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In your case (with 2 continuous factors and 1 categorical factor), when setting the sphere radius to 1,414 (the value for rotatable CCD with 2 continuous factors), I get a rotatable design regarding the two continuous factors :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_0-1677225524774.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50421i00C9DBF8D18162A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_0-1677225524774.png" alt="Victor_G_0-1677225524774.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And here is the script to create such design :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;DOE(
	Custom Design,
	{Add Response( Maximize, "Y", ., ., . ),
	Add Factor( Continuous, -1, 1, "X1", 0 ),
	Add Factor( Continuous, -1, 1, "X2", 0 ),
	Add Factor( Categorical, {"L1", "L2"}, "X3", 0 ), Set Random Seed( 913807339 ),
	Number of Starts( 32801 ), Add Term( {1, 0} ), Add Term( {1, 1} ),
	Add Term( {2, 1} ), Add Term( {3, 1} ), Add Term( {1, 2} ),
	Add Term( {1, 1}, {2, 1} ), Add Term( {2, 2} ), Add Term( {1, 1}, {3, 1} ),
	Add Term( {2, 1}, {3, 1} ), Add Term( {1, 1}, {2, 1}, {3, 1} ),
	Center Points( 2 ), Set Sample Size( 16 ),
	Optimality Criterion( "Make I-Optimal Design" ), Sphere Radius( 1.414 ),
	Simulate Responses( 0 ), Save X Matrix( 0 ), Make Design,
	Set Run Order( Randomize ), Make Table}
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I hope this answer will help you,&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 08:00:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605056#M80756</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2023-02-24T08:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Specifying axial value as rotatable in custom design</title>
      <link>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605220#M80770</link>
      <description>&lt;P&gt;Welcome to the community. &amp;nbsp;Have you tried DOE&amp;gt;Classical&amp;gt;Response Surface&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50461iE5690AC5B164483E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" alt="Screen Shot 2023-02-24 at 7.58.15 AM.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For categorical, there are options.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.0/?os=mac&amp;amp;source=application#page/jmp/response-surface-design-with-constraints-and-categorical-factor.shtml#" target="_blank"&gt;https://www.jmp.com/support/help/en/17.0/?os=mac&amp;amp;source=application#page/jmp/response-surface-design-with-constraints-and-categorical-factor.shtml#&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 14:59:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605220#M80770</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2023-02-24T14:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Specifying axial value as rotatable in custom design</title>
      <link>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605314#M80778</link>
      <description>Thank you Victor!</description>
      <pubDate>Fri, 24 Feb 2023 17:44:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Specifying-axial-value-as-rotatable-in-custom-design/m-p/605314#M80778</guid>
      <dc:creator>tokiwon</dc:creator>
      <dc:date>2023-02-24T17:44:42Z</dc:date>
    </item>
  </channel>
</rss>

