<?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: Bootstrapping takes a long time in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/469832#M71384</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/9474"&gt;@Georg&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the benchmark! I ran it and it took me 77 seconds, so I think the issue is more in regards to the computationally intensive method of the bootstrap for estimating the statistical parameters from the mixture distribution data, as&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2781"&gt;@peng_liu&lt;/a&gt;&amp;nbsp;pointed out in a later response. I attached an example of the parameters I perform the bootstrap on which takes the 1.5 hours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tyler_Burda_0-1647355403918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40827iC8CEF2A7EFC15A1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tyler_Burda_0-1647355403918.png" alt="Tyler_Burda_0-1647355403918.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Mar 2022 14:56:29 GMT</pubDate>
    <dc:creator>Tyler_Burda</dc:creator>
    <dc:date>2022-03-15T14:56:29Z</dc:date>
    <item>
      <title>Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/466705#M71051</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am performing a bootstrap on some data created using the mixture distribution function as part of the life distribution to calculate reliability. I am using the bootstrap data to develop confidence intervals for the mixture distribution parameters. The 5 parameters estimated are sigma 1&amp;amp;2, mu 1&amp;amp;2, and portion which is what I am creating the bootstrap for. I am not designating a random seed and left as a '.', I am using fractional weights though with a generated sample size of 2500 as the standard input. The question I have is should this bootstrap normally take 1.5 hours or so? It seems to be pretty long and I was discussing with a coworker that this doesn't seem right and to get my computer checked out as the processing speed may be low. But my computer is fairly new, I have a Dell Precision 7560 with i7 intel processor 2.50GHz and 32GB of RAM, so I am curious if the long time for bootstrapping is typical or if there is something else with JMP I should look into?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 20:49:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/466705#M71051</guid>
      <dc:creator>Tyler_Burda</dc:creator>
      <dc:date>2023-06-10T20:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467267#M71110</link>
      <description>&lt;P&gt;Cannot judge this, but probably we need a benchmark script to compare,&lt;/P&gt;
&lt;P&gt;see code encluded. The analysis needs 79 s on my computer (JMP 16.1 Pro on Win10 on Dell precision 3551 Intel core i7 2.7 MHz 32GB, probably comparable to yours).&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 );

starttime = tick seconds();
dt = New Table( "Random",
	add rows( 1000000 ),
	New Column( "X", formula( Row() ) ),
	New Column( "Y", formula( :X + Random Normal( 0, 3 ) ) )
);

obj = Bivariate( Y( :Y ), X( :X ) );
obj &amp;lt;&amp;lt; Fit Line;
(obj &amp;lt;&amp;lt; Report)[Number Col Box( 1 )] &amp;lt;&amp;lt; Bootstrap(
	100,
	Fractional Weights( 1 ),
	Split Selected Column( 1 )
);
endtime= tick seconds();
print(eval insert("Analysis took ^round(endtime - starttime)^ seconds"))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 05 Mar 2022 11:37:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467267#M71110</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2022-03-05T11:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467419#M71141</link>
      <description>&lt;P&gt;166 seconds on older 4 cpu machine. You have nice hardware!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 00:00:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467419#M71141</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-03-07T00:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467423#M71144</link>
      <description>&lt;P&gt;JMP Pro 14、&lt;SPAN&gt;core i5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;66&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-03-07_10-43-29.png" style="width: 576px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40573i849119664F2F13D9/image-size/large?v=v2&amp;amp;px=999" role="button" title="2022-03-07_10-43-29.png" alt="2022-03-07_10-43-29.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 02:45:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467423#M71144</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2022-03-07T02:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467468#M71152</link>
      <description>&lt;P&gt;Can't resist a benchmark :). 45 seconds on my MacBook Pro (JMP 16.2):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-07 at 11.47.45.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40576i7BD3A92B6AA773EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-03-07 at 11.47.45.png" alt="Screenshot 2022-03-07 at 11.47.45.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 11:49:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467468#M71152</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2022-03-07T11:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467479#M71156</link>
      <description>&lt;P&gt;That makes me feel good.&amp;nbsp; My machine is at least 12 years old (i7, 3.4GHz) and it took 142 seconds.&amp;nbsp; I keep thinking I need to upgrade my machine, but it seems wasteful and unnecessary.&amp;nbsp; These benchmark results help - yes, I can do better, but I'm not completely out of line!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 12:49:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467479#M71156</guid>
      <dc:creator>dale_lehman</dc:creator>
      <dc:date>2022-03-07T12:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467486#M71160</link>
      <description>&lt;P&gt;Me neither:&amp;nbsp;"Analysis took 21 seconds"&lt;/P&gt;
&lt;P&gt;macOS Monterey on MacBook Pro M1 Max with JMP Pro 16.2&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 13:03:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467486#M71160</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-03-07T13:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467740#M71172</link>
      <description>&lt;P&gt;194 seconds&lt;/P&gt;
&lt;P&gt;Windows 10&lt;/P&gt;
&lt;P&gt;11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz 3.00 GHz&lt;/P&gt;
&lt;P&gt;16.0 GB (15.7 GB usable)&lt;/P&gt;
&lt;P&gt;JMP Pro 16&lt;/P&gt;
&lt;P&gt;With&amp;nbsp;&lt;EM&gt;many applications&lt;/EM&gt; running concurrently in RAM.&amp;nbsp; :)&lt;/img&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PatrickGiuliano_0-1646689504797.png" style="width: 658px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40624i279A2DB894D858E8/image-dimensions/658x452?v=v2" width="658" height="452" role="button" title="PatrickGiuliano_0-1646689504797.png" alt="PatrickGiuliano_0-1646689504797.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 21:45:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467740#M71172</guid>
      <dc:creator>PatrickGiuliano</dc:creator>
      <dc:date>2022-03-07T21:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467928#M71184</link>
      <description>&lt;P&gt;Mixture distribution fitting is computationally intensive, and the success of fitting heavily depends on the quality of data assuming the model is the right choice. Try the sample data "Mixture Demo" under reliability sample data folder, and see how slow it can be comparing to other modeling types (e.g. least square). That sample data was simulated and considered very good.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 19:03:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/467928#M71184</guid>
      <dc:creator>peng_liu</dc:creator>
      <dc:date>2022-03-08T19:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/468173#M71194</link>
      <description>&lt;P&gt;Took 80 seconds with JMP 17 Pro EA on my Lenovo Windows 10 machine.&amp;nbsp;&amp;nbsp;11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz 2.61 GHz, 16GB RAM&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 19:24:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/468173#M71194</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2022-03-09T19:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/468255#M71200</link>
      <description>&lt;P&gt;When I hear users describing excessive time to generate reports, I usually suggest to go into File -&amp;gt; preferences -&amp;gt; windows specific, and uncheck 'enable hardware accelerated graphics.' I have no idea if that will help in your case, because I think when users have this issue it applies to many or all platforms, but it is an easy thing to check.&amp;nbsp; Sounds like you'll know in a few minutes (or a few hours).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's a note on it:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.jmp.com/support/notes/67/990.html" target="_blank"&gt;https://www.jmp.com/support/notes/67/990.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 21:57:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/468255#M71200</guid>
      <dc:creator>mikedriscoll</dc:creator>
      <dc:date>2022-03-09T21:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/469832#M71384</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/9474"&gt;@Georg&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the benchmark! I ran it and it took me 77 seconds, so I think the issue is more in regards to the computationally intensive method of the bootstrap for estimating the statistical parameters from the mixture distribution data, as&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2781"&gt;@peng_liu&lt;/a&gt;&amp;nbsp;pointed out in a later response. I attached an example of the parameters I perform the bootstrap on which takes the 1.5 hours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tyler_Burda_0-1647355403918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40827iC8CEF2A7EFC15A1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tyler_Burda_0-1647355403918.png" alt="Tyler_Burda_0-1647355403918.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 14:56:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/469832#M71384</guid>
      <dc:creator>Tyler_Burda</dc:creator>
      <dc:date>2022-03-15T14:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470147#M71425</link>
      <description>&lt;P&gt;I know that this can make trouble, we had several laptops, where this option checked lead to unresponsive GUI (on windows machines, using JMP16 ...). Unchecking this option made the problem gone. So I resume this is connected to the graphical display (as the option says) and not to the underlying calculation, that here needs the time, and it's complexity is the "problem".&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 06:05:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470147#M71425</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2022-03-16T06:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470312#M71442</link>
      <description>&lt;P&gt;Hi Georg,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree with you. I figured I would mention it just in case it was related but at this point I'd say it definitely is not.&amp;nbsp; The original poster responded in this thread yesterday (but for some reason it is showing up in the middle of page 1) that their run of benchmark took 77 seconds, so that is in the range everyone else's results.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 15:10:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470312#M71442</guid>
      <dc:creator>mikedriscoll</dc:creator>
      <dc:date>2022-03-16T15:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Bootstrapping takes a long time</title>
      <link>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470831#M71497</link>
      <description>&lt;P&gt;Yeah I tried unchecking&amp;nbsp;&lt;SPAN&gt;'enable hardware accelerated graphics' and the bootstrap still takes the 1.5 hours or so.&amp;nbsp;&lt;/SPAN&gt;Thanks for the suggestion though!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 14:31:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Bootstrapping-takes-a-long-time/m-p/470831#M71497</guid>
      <dc:creator>Tyler_Burda</dc:creator>
      <dc:date>2022-03-17T14:31:59Z</dc:date>
    </item>
  </channel>
</rss>

