<?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: How can I generate a simulated database in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562110#M77510</link>
    <description>&lt;P&gt;I see from your previous discussion item that other members have pointed you to the random number functions available in JMP.&amp;nbsp; I assume that from your repeating of the question, you are not capable of expanding on the information they provided, into the creation of a data table.&amp;nbsp; Below is a simple sample of a script that produces a data table with 2 columns with 2 different distributions used for the 2 columns.&amp;nbsp; This should give you a big leg up on expanding the JSL to what you specifically need.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=new table("Simulated",
	add rows(1000),
	new column("col 1",
		set each value(random uniform(1,1000000)) // range of values from 1 to 1,000,000
	),
	new column("col 2",
		set each value(random normal(200, 15)) // mean of 200, std of 15
	)
);

// There are many other distributions that can be generated&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 28 Oct 2022 21:37:53 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2022-10-28T21:37:53Z</dc:date>
    <item>
      <title>How can I generate a simulated database</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562070#M77509</link>
      <description>&lt;P&gt;I need to generate a large database through simulation in JMP Pro 16. It could follow any probability distribution. Can anybody help?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:56:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562070#M77509</guid>
      <dc:creator>madhu</dc:creator>
      <dc:date>2023-06-10T23:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I generate a simulated database</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562110#M77510</link>
      <description>&lt;P&gt;I see from your previous discussion item that other members have pointed you to the random number functions available in JMP.&amp;nbsp; I assume that from your repeating of the question, you are not capable of expanding on the information they provided, into the creation of a data table.&amp;nbsp; Below is a simple sample of a script that produces a data table with 2 columns with 2 different distributions used for the 2 columns.&amp;nbsp; This should give you a big leg up on expanding the JSL to what you specifically need.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=new table("Simulated",
	add rows(1000),
	new column("col 1",
		set each value(random uniform(1,1000000)) // range of values from 1 to 1,000,000
	),
	new column("col 2",
		set each value(random normal(200, 15)) // mean of 200, std of 15
	)
);

// There are many other distributions that can be generated&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Oct 2022 21:37:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562110#M77510</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-10-28T21:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I generate a simulated database</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562126#M77512</link>
      <description>&lt;P&gt;Great, this works. Thank you&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Oct 2022 00:25:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-generate-a-simulated-database/m-p/562126#M77512</guid>
      <dc:creator>madhu</dc:creator>
      <dc:date>2022-10-29T00:25:41Z</dc:date>
    </item>
  </channel>
</rss>

