<?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: Clearing Remembered Settings in Profiler? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805525#M98382</link>
    <description>&lt;P&gt;Hi Jarmo, thanks for the reply. Unfortunately, this solution works only to delete the box, but one cannot "bring it back" if we click maximize and remember. It seems natural that there should be a general way to click things from the dropdown menu from an outline box.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2024 07:20:29 GMT</pubDate>
    <dc:creator>ThomasB</dc:creator>
    <dc:date>2024-10-15T07:20:29Z</dc:date>
    <item>
      <title>Clearing Remembered Settings in Profiler?</title>
      <link>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805331#M98360</link>
      <description>&lt;P&gt;I am writing a script that uses the Prediction Profiler inside of the Fit Least Squares Platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In particular, I am making use of the&amp;nbsp;&lt;EM&gt;Maximize and Remember&amp;nbsp;&lt;/EM&gt;option, which saves the factor settings into the Remembered Settings Outline Box. After I save certain combinations, I want to clear out the settings. If I would be using JMP manually, I could simply go to the red triangle by "Remembered Settings" and click "Remove All". How can I do this in JSL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to read about Outline Boxes, and it seems that there's some options like "Set Menu Item State" or "Set Submenu", which might be related. However, I can't get it to work and the documentation is not extensive regarding this topic. Any help is appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Toy code to play around:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );

Fit Model(
	Y( :ABRASION ),
	Effects( :SILICA, :SILANE, :SULFUR ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Screening" ),
	Run(
		:ABRASION &amp;lt;&amp;lt; {Summary of Fit( 0 ), Analysis of Variance( 0 ),
		Parameter Estimates( 1 ), Effect Details( 0 ), Sorted Estimates( 0 ),
		Plot Actual by Predicted( 1 ), Plot Regression( 0 ),
		Plot Residual by Predicted( 1 ), Plot Studentized Residuals( 1 ),
		Plot Effect Leverage( 0 ), Plot Residual by Normal Quantiles( 0 ),
		Box Cox Y Transformation( 0 ), Profiler(
			1,
			Confidence Intervals( 1 ),
			Desirability Functions( 1 ),
		)}
	),
	SendToReport(
		Dispatch( {}, "Actual by Predicted Plot", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Effect Summary", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Lack Of Fit", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Residual by Predicted Plot", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Studentized Residuals", OutlineBox, {Close( 1 )} )
	)
);

// Get current report and profiler
current_rep = current report();
pf=current_rep["Prediction Profiler"] &amp;lt;&amp;lt; get scriptable object;

// maximize and remember
pf &amp;lt;&amp;lt; maximize and remember;

// clear remembered settings
// ??????&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 14:28:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805331#M98360</guid>
      <dc:creator>ThomasB</dc:creator>
      <dc:date>2024-10-14T14:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Clearing Remembered Settings in Profiler?</title>
      <link>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805358#M98361</link>
      <description>&lt;P&gt;I'm not sure if this will perform the same thing as pressing remove all&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Tiretread.jmp");

fm = dt &amp;lt;&amp;lt; Fit Model(
	Y(:ABRASION),
	Effects(:SILICA, :SILANE, :SULFUR),
	Personality("Standard Least Squares"),
	Emphasis("Effect Screening"),
	Run(
		:ABRASION &amp;lt;&amp;lt; {Summary of Fit(0), Analysis of Variance(0), Parameter Estimates(1),
		Effect Details(0), Sorted Estimates(0), Plot Actual by Predicted(1), Plot Regression(0),
		Plot Residual by Predicted(1), Plot Studentized Residuals(1), Plot Effect Leverage(0),
		Plot Residual by Normal Quantiles(0), Box Cox Y Transformation(0),
		Profiler(1, Confidence Intervals(1), Desirability Functions(1), )}
	),
	SendToReport(
		Dispatch({}, "Actual by Predicted Plot", OutlineBox, {Close(1)}),
		Dispatch({}, "Effect Summary", OutlineBox, {Close(1)}),
		Dispatch({}, "Lack Of Fit", OutlineBox, {Close(1)}),
		Dispatch({}, "Residual by Predicted Plot", OutlineBox, {Close(1)}),
		Dispatch({}, "Studentized Residuals", OutlineBox, {Close(1)})
	)
);

pf = Report(fm)[Outlinebox("Prediction Profiler")] &amp;lt;&amp;lt; get scriptable object;

pf &amp;lt;&amp;lt; maximize and remember;

Report(fm)[Outline Box("Remembered Settings")] &amp;lt;&amp;lt; Delete Box;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Oct 2024 15:41:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805358#M98361</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-10-14T15:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Clearing Remembered Settings in Profiler?</title>
      <link>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805525#M98382</link>
      <description>&lt;P&gt;Hi Jarmo, thanks for the reply. Unfortunately, this solution works only to delete the box, but one cannot "bring it back" if we click maximize and remember. It seems natural that there should be a general way to click things from the dropdown menu from an outline box.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 07:20:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clearing-Remembered-Settings-in-Profiler/m-p/805525#M98382</guid>
      <dc:creator>ThomasB</dc:creator>
      <dc:date>2024-10-15T07:20:29Z</dc:date>
    </item>
  </channel>
</rss>

