<?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: Recording Experimenters' Club Q2 2026_Beyond One Best Model: What a DSD Can Really Tell You in Design of Experiments Club Discussions</title>
    <link>https://community.jmp.com/t5/Design-of-Experiments-Club/Recording-Experimenters-Club-Q2-2026-Beyond-One-Best-Model-What/m-p/949908#M56</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4125"&gt;@maria_astals&lt;/a&gt;&amp;nbsp;for the recording !&lt;BR /&gt;Here is the detailed process to create a Raster Plot from a DoE:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to &lt;STRONG&gt;Fit Model&lt;/STRONG&gt; platform (or click on the script &lt;STRONG&gt;Model&lt;/STRONG&gt; in the DoE table), specify the response(s) and terms in the assumed model (if these&amp;nbsp; panels are not already pre-filled) and choose the Personality &lt;STRONG&gt;Stepwise&lt;/STRONG&gt;. Click on Run.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_0-1779431638593.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104491iED4ECDE46532E871/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_0-1779431638593.png" alt="Victor_G_0-1779431638593.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Go to the red triangle next to Stepwise Fit, select &lt;STRONG&gt;All Possible Models&lt;/STRONG&gt;, and define the maximum number of possible terms in the models as well as number of best models to see. Check the option &lt;STRONG&gt;Restrict to models where interactions imply lower order effects (Heredity Restriction)&lt;/STRONG&gt;. Click OK.&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_1-1779431913401.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104492i53D6134549DFD2CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_1-1779431913401.png" alt="Victor_G_1-1779431913401.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Once the calculations are done, a new table &lt;STRONG&gt;All Possible Models&lt;/STRONG&gt; appears in the report. RIght-click on this table, and choose the option &lt;STRONG&gt;Make Combined Data Table&lt;/STRONG&gt;. You then have a new table opened with the results from the Stepwise platform:&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_2-1779432063363.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104493i2928FED885E6F11A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_2-1779432063363.png" alt="Victor_G_2-1779432063363.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;To identify each model individually and keep track of their performances, we create a new model ID column on the new table. To do this, right-click on the first column of the table, and select &lt;STRONG&gt;New Formula Column &amp;gt; Row &amp;gt; Row&lt;/STRONG&gt;. Each model will then have a unique ID with the new column "Row". Change the Modeling type to Nominal.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Select the column "Model", and click on the red triangle in the upper right position on the left of the datatable (or click in the menu Cols), choose &lt;STRONG&gt;Utilities &amp;gt; Text to Columns&lt;/STRONG&gt;. Define the delimiter as "," and check the option &lt;STRONG&gt;Make Indicator Columns&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click on menu &lt;STRONG&gt;Table &amp;gt; Stack&lt;/STRONG&gt;. Select all the new indicator columns and click on Stack Columns. You can rename the Label column as "Terms" and the Data column as "Presence". Click OK.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_4-1779433393945.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104496iC51D4FB1B313BE1A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_4-1779433393945.png" alt="Victor_G_4-1779433393945.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;You can then add some formula column (or using the Recode option) to identify which terms are main effects, interaction effect or quadratic effects to prepare the plot. With the example Bounce Data, I used a formula column when recoding:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Map Value(
	:Terms,
	{"Silane", "Main effect", "Silane*Silane", "Quadratic effect", "Silica",
	"Main effect", "Silica*Silane", "Interaction effect", "Silica*Silica",
	"Quadratic effect", "Silica*Sulfur", "Interaction effect", "Sulfur",
	"Main effect", "Sulfur*Silane", "Interaction effect", "Sulfur*Sulfur",
	"Quadratic effect"},
	Unmatched( :Terms )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Add a &lt;STRONG&gt;Value Order&lt;/STRONG&gt; column property to the Terms type column, so that the terms in the model appear with the main effects first, then interaction effects, then quadratic effects:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_5-1779434224348.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104497i70936A7E34693E79/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_5-1779434224348.png" alt="Victor_G_5-1779434224348.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;You can then use Graph Builder and create the Raster plot !&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Use "Row" (or Model ID column) as Y variable.&lt;/LI&gt;
&lt;LI&gt;Use "Terms" as X variable.&lt;/LI&gt;
&lt;LI&gt;Add "Terms type" as a nesting X variable (in the location below X).&lt;/LI&gt;
&lt;LI&gt;Change the graph style to "Heatmap".&lt;/LI&gt;
&lt;LI&gt;Use one of the model's performance metric (for example RMSE) as Color variable and choose an appropriate color theme (like green to red).&lt;/LI&gt;
&lt;LI&gt;Right-click on the Y variable, choose Order by, and select your performance metric (ascending for AICc, BIC and RMSE, descending for Rsquare).&lt;/LI&gt;
&lt;LI&gt;Add a Local Data Filter on the column "Presence" and select only value different from 0 (1: term is present in the model).&lt;/LI&gt;
&lt;LI&gt;You can also add a filter on the number of models displayed by filtering/reducing the range of values for the performance metric.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Once everything is set, click on Done. The Raster plot is ready !&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_6-1779434935421.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104498i1A9426065C560A9E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_6-1779434935421.png" alt="Victor_G_6-1779434935421.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;As you can see, the creation of the Raster plot involves a lot of different operations. I'm planning on creating an add-in to automatize the process, to reduce the manual (and painful !) work needed to get this great visualization. If anyone is willing to help and contribute to this add-in, please join !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 May 2026 07:40:46 GMT</pubDate>
    <dc:creator>Victor_G</dc:creator>
    <dc:date>2026-05-22T07:40:46Z</dc:date>
    <item>
      <title>Recording Experimenters' Club Q2 2026_Beyond One Best Model: What a DSD Can Really Tell You</title>
      <link>https://community.jmp.com/t5/Design-of-Experiments-Club/Recording-Experimenters-Club-Q2-2026-Beyond-One-Best-Model-What/m-p/945035#M55</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Video 1:&amp;nbsp;Challenge -&amp;nbsp; Beyond One Best Model: What a DSD Can Really Tell You&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The Q2 session of the Experimenter’s Club featured a lively discussion on George Box’s famous reminder that &lt;I&gt;"all models are wrong, but some are useful."&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;It began with a user &lt;A id="menurmku" class="fui-Link ___1q1shib f2hkw1w f3rmtva f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f1cmlufx f9n3di6 f1ids18y f1tx3yz7 f1deo86v f1eh06m1 f1iescvh fhgqx19 f1olyrje f1p93eir f1nev41a f1h8hb77 f1lqvz6u f10aw75t fsle3fq f17ae5zn" title="https://community.jmp.com/t5/discussions/quot-surprising-quot-results-in-an-dsd-design/td-p/941518" href="https://community.jmp.com/t5/Discussions/quot-Surprising-quot-results-in-an-DSD-Design/td-p/941518" rel="noreferrer noopener" aria-label="Link questioning" target="_blank"&gt;questioning&lt;/A&gt; whether unexpectedly strong interaction and quadratic effects in a 6-factor Definitive Screening Design (DSD) should be trusted. What followed was a thoughtful exchange showing that the real issue is &lt;A id="menurml0" class="fui-Link ___1q1shib f2hkw1w f3rmtva f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f1cmlufx f9n3di6 f1ids18y f1tx3yz7 f1deo86v f1eh06m1 f1iescvh fhgqx19 f1olyrje f1p93eir f1nev41a f1h8hb77 f1lqvz6u f10aw75t fsle3fq f17ae5zn" title="https://www.linkedin.com/posts/victorguiller_experimentersclub-designofexperiments-activity-7454786628448841732-zfcw?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=acoaadahggebwbplcqumdaer8x_flkzrkxf0lcg" href="https://www.linkedin.com/posts/victorguiller_experimentersclub-designofexperiments-activity-7454786628448841732-ZFcw?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=ACoAADahGGEBwbPLcQuMDaer8x_flKzRkxf0Lcg" rel="noreferrer noopener" aria-label="Link not whether one model is “correct" target="_blank"&gt;not whether one model is “&lt;I&gt;correct&lt;/I&gt;&lt;/A&gt;,” but how to interpret a design space in which many plausible models coexist.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6394162783112w960h540r73" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6394162783112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6394162783112w960h540r73');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6394162783112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Community Question:&amp;nbsp;&lt;/STRONG&gt;&lt;A href="https://community.jmp.com/t5/Discussions/quot-Surprising-quot-results-in-an-DSD-Design/td-p/941518" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discussions/quot-Surprising-quot-results-in-an-DSD-Design/td-p/941518&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;LinkedIn post from Victor:&amp;nbsp;&lt;/STRONG&gt;&lt;A href="https://www.linkedin.com/posts/victorguiller_experimentersclub-designofexperiments-share-7453440558682894336-j7Ki?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=ACoAAAg2XG8BduAUlMeluDXcuMFV-P_Hxv1KA0k" target="_blank" rel="noopener"&gt;https://www.linkedin.com/posts/victorguiller_experimentersclub-designofexperiments-share-7453440558682894336-j7Ki?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=ACoAAAg2XG8BduAUlMeluDXcuMFV-P_Hxv1KA0k&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Video 2: Discussion&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The conversation highlighted that in a DSD with a limited number of runs, it is impossible to estimate every main, interaction, and quadratic effect simultaneously without structural tradeoffs. As a result, partial aliasing, multicollinearity, and model multiplicity are natural features of the problem rather than signs of failure.&lt;/P&gt;
&lt;P&gt;The discussion emphasized that different estimation methods and selection criteria, such as R², adjusted R², AICc, BIC, and RMSE, can lead to different but still defensible models.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6394161814112w960h540r796" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6394161814112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6394161814112w960h540r796');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6394161814112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;A key takeaway is that experimenters should not focus only on finding a single best-fitting model. Instead, they should compare multiple strong candidates, look for effects that appear consistently across good models, apply effect hierarchy and domain knowledge, and consider augmentation when confirmation is needed.&lt;/P&gt;
&lt;P&gt;In that sense, the design process becomes less about reacting to surprising results and more about disciplined model judgment in real-world experimental work.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 07:02:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Design-of-Experiments-Club/Recording-Experimenters-Club-Q2-2026-Beyond-One-Best-Model-What/m-p/945035#M55</guid>
      <dc:creator>maria_astals</dc:creator>
      <dc:date>2026-04-30T07:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Recording Experimenters' Club Q2 2026_Beyond One Best Model: What a DSD Can Really Tell You</title>
      <link>https://community.jmp.com/t5/Design-of-Experiments-Club/Recording-Experimenters-Club-Q2-2026-Beyond-One-Best-Model-What/m-p/949908#M56</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4125"&gt;@maria_astals&lt;/a&gt;&amp;nbsp;for the recording !&lt;BR /&gt;Here is the detailed process to create a Raster Plot from a DoE:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to &lt;STRONG&gt;Fit Model&lt;/STRONG&gt; platform (or click on the script &lt;STRONG&gt;Model&lt;/STRONG&gt; in the DoE table), specify the response(s) and terms in the assumed model (if these&amp;nbsp; panels are not already pre-filled) and choose the Personality &lt;STRONG&gt;Stepwise&lt;/STRONG&gt;. Click on Run.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_0-1779431638593.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104491iED4ECDE46532E871/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_0-1779431638593.png" alt="Victor_G_0-1779431638593.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Go to the red triangle next to Stepwise Fit, select &lt;STRONG&gt;All Possible Models&lt;/STRONG&gt;, and define the maximum number of possible terms in the models as well as number of best models to see. Check the option &lt;STRONG&gt;Restrict to models where interactions imply lower order effects (Heredity Restriction)&lt;/STRONG&gt;. Click OK.&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_1-1779431913401.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104492i53D6134549DFD2CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_1-1779431913401.png" alt="Victor_G_1-1779431913401.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Once the calculations are done, a new table &lt;STRONG&gt;All Possible Models&lt;/STRONG&gt; appears in the report. RIght-click on this table, and choose the option &lt;STRONG&gt;Make Combined Data Table&lt;/STRONG&gt;. You then have a new table opened with the results from the Stepwise platform:&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_2-1779432063363.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104493i2928FED885E6F11A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_2-1779432063363.png" alt="Victor_G_2-1779432063363.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;To identify each model individually and keep track of their performances, we create a new model ID column on the new table. To do this, right-click on the first column of the table, and select &lt;STRONG&gt;New Formula Column &amp;gt; Row &amp;gt; Row&lt;/STRONG&gt;. Each model will then have a unique ID with the new column "Row". Change the Modeling type to Nominal.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Select the column "Model", and click on the red triangle in the upper right position on the left of the datatable (or click in the menu Cols), choose &lt;STRONG&gt;Utilities &amp;gt; Text to Columns&lt;/STRONG&gt;. Define the delimiter as "," and check the option &lt;STRONG&gt;Make Indicator Columns&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click on menu &lt;STRONG&gt;Table &amp;gt; Stack&lt;/STRONG&gt;. Select all the new indicator columns and click on Stack Columns. You can rename the Label column as "Terms" and the Data column as "Presence". Click OK.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_4-1779433393945.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104496iC51D4FB1B313BE1A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_4-1779433393945.png" alt="Victor_G_4-1779433393945.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;You can then add some formula column (or using the Recode option) to identify which terms are main effects, interaction effect or quadratic effects to prepare the plot. With the example Bounce Data, I used a formula column when recoding:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Map Value(
	:Terms,
	{"Silane", "Main effect", "Silane*Silane", "Quadratic effect", "Silica",
	"Main effect", "Silica*Silane", "Interaction effect", "Silica*Silica",
	"Quadratic effect", "Silica*Sulfur", "Interaction effect", "Sulfur",
	"Main effect", "Sulfur*Silane", "Interaction effect", "Sulfur*Sulfur",
	"Quadratic effect"},
	Unmatched( :Terms )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Add a &lt;STRONG&gt;Value Order&lt;/STRONG&gt; column property to the Terms type column, so that the terms in the model appear with the main effects first, then interaction effects, then quadratic effects:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_5-1779434224348.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104497i70936A7E34693E79/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_5-1779434224348.png" alt="Victor_G_5-1779434224348.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;You can then use Graph Builder and create the Raster plot !&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Use "Row" (or Model ID column) as Y variable.&lt;/LI&gt;
&lt;LI&gt;Use "Terms" as X variable.&lt;/LI&gt;
&lt;LI&gt;Add "Terms type" as a nesting X variable (in the location below X).&lt;/LI&gt;
&lt;LI&gt;Change the graph style to "Heatmap".&lt;/LI&gt;
&lt;LI&gt;Use one of the model's performance metric (for example RMSE) as Color variable and choose an appropriate color theme (like green to red).&lt;/LI&gt;
&lt;LI&gt;Right-click on the Y variable, choose Order by, and select your performance metric (ascending for AICc, BIC and RMSE, descending for Rsquare).&lt;/LI&gt;
&lt;LI&gt;Add a Local Data Filter on the column "Presence" and select only value different from 0 (1: term is present in the model).&lt;/LI&gt;
&lt;LI&gt;You can also add a filter on the number of models displayed by filtering/reducing the range of values for the performance metric.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Once everything is set, click on Done. The Raster plot is ready !&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_6-1779434935421.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/104498i1A9426065C560A9E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Victor_G_6-1779434935421.png" alt="Victor_G_6-1779434935421.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;As you can see, the creation of the Raster plot involves a lot of different operations. I'm planning on creating an add-in to automatize the process, to reduce the manual (and painful !) work needed to get this great visualization. If anyone is willing to help and contribute to this add-in, please join !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 07:40:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Design-of-Experiments-Club/Recording-Experimenters-Club-Q2-2026-Beyond-One-Best-Model-What/m-p/949908#M56</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-05-22T07:40:46Z</dc:date>
    </item>
  </channel>
</rss>

