<?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: Output JMP table to formatted journal or picture with wrapped cells in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270280#M52620</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I need just the data in the table, not the whole picture.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would like it without the extra columns and the left menu items.&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jun 2020 18:21:10 GMT</pubDate>
    <dc:creator>tnqnt</dc:creator>
    <dc:date>2020-06-02T18:21:10Z</dc:date>
    <item>
      <title>Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270245#M52608</link>
      <description>&lt;P&gt;Hello!&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking for help.&lt;/P&gt;&lt;P&gt;I am a new JMP user having a hard time with a seemingly simple task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a 2x3 table.&lt;/P&gt;&lt;P&gt;Column 1 is short text (date)...&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column 2&amp;nbsp;is text, very long text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to get the table to an exported format, &lt;STRONG&gt;either journal or picture file.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CRITICALLY important is that I am able to &lt;STRONG&gt;&lt;U&gt;define the table size and wrap the text from column 2&lt;/U&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;TIA&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:14:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270245#M52608</guid>
      <dc:creator>tnqnt</dc:creator>
      <dc:date>2023-06-10T23:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270264#M52612</link>
      <description>&lt;P&gt;Below is a start at answering your question.&amp;nbsp; Not knowing what you mean by "very long text" I had to just grab a bunch of text for my example.&amp;nbsp; Take a look, and see the if some refining this may solve your issue.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = New Table( "Example",
	Add Rows( 3 ),
	Set Cell Height( 178 ),
	New Column( "date",
		Numeric,
		"Continuous",
		Format( "m/d/y", 10 ),
		Input Format( "m/d/y" ),
		Set Values( [3662582400, 3664396800, 3667075200] )
	),
	New Column( "Text",
		Character,
		"Nominal",
		Set Values(
			{
			"This book describes the initial types of analyses that you often perform in JMP:
• The Distribution platform illustrates the distribution of a single variable using histograms, additional graphs, and reports. Once you know how your data is distributed, you can plan the appropriate type of analysis going forward. See Distributions.
• The Fit Y by X platform analyzes the pair of X and Y variables that you specify, by context, based on modeling type. See Introduction to Fit Y by X. The four types of analyses include:
– The Bivariate platform, which analyzes the relationship between two continuous X variables. See Bivariate Analysis.
– The Oneway platform, which analyzes how the distribution of a continuous Y variable differs across groups defined by a categorical X variable. See Chapter 6, “Oneway Analysis”.
– The Contingency platform, which analyzes the distribution of a categorical response variable Y as conditioned by the values of a categorical X factor. See Contingency Analysis.
– The Logistic platform, which fits the probabilities for response categories (Y) to a continuous X predictor. See Logistic Analysis.
• The Tabulate platform interactively constructs tables of descriptive statistics. See Tabulate.
• The Simulate feature provides parametric and nonparametric simulation capability. See Simulate.
• Bootstrap analysis approximates the sampling distribution of a statistic. The data is re-sampled with replacement and the statistic is computed. This process is repeated to produce a distribution of values for the statistic. See Bootstrapping.
• The Text Explorer platform enables you to categorize and analyze unformatted text data. You can use regular expressions to clean up the data before you proceed to analysis. See Text Explorer.",
			"The Distribution platform illustrates the distribution of a single variable using histograms, additional graphs, and reports. The word univariate simply means involving one variable instead of two (bivariate) or many (multivariate). However, you can examine the distribution of several individual variables within a report. The report content for each variable changes depending on whether the variable is categorical (nominal or ordinal) or continuous.",
			"The Bivariate platform shows the relationship between two continuous variables. It is the continuous by continuous personality of the Fit Y by X platform. The word bivariate simply means involving two variables instead of one (univariate) or many (multivariate).
The Bivariate analysis results appear in a scatterplot. Each point on the plot represents the X and Y values for a single observation; in other words, each point represents two variables. Using the scatterplot, you can see at a glance the degree and pattern of the relationship between the two variables. You can interactively add other types of fits, such as simple linear regression, polynomial regression, and so on."
			}
		)
	)
);
 dt&amp;lt;&amp;lt; set window size(1500,800);

dt:text &amp;lt;&amp;lt; set Display Width(1200);
nw=new window("test",&amp;lt;&amp;lt;journal);

nw&amp;lt;&amp;lt;append(window("Example")&amp;lt;&amp;lt;get picture);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Jun 2020 17:32:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270264#M52612</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-02T17:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270270#M52613</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tnqnt_0-1591120049556.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24301iB1CBACAC6933B45B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tnqnt_0-1591120049556.png" alt="tnqnt_0-1591120049556.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is the type of table.&amp;nbsp; By long data, I just mean a lot of characters :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;If I dump it to a journal, it doesn't keep the column or row specifications from the table and it does not wrap the text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need the output to look like this, but in photo or some other format I can transport to non-jmp users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks so much!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 17:48:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270270#M52613</guid>
      <dc:creator>tnqnt</dc:creator>
      <dc:date>2020-06-02T17:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270273#M52614</link>
      <description>&lt;P&gt;This is what it looks like when I dump to a journal:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tnqnt_0-1591120280620.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24302i93BAA0ED4CE44505/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tnqnt_0-1591120280620.png" alt="tnqnt_0-1591120280620.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need the columns and rows to look like the data table view.&lt;/P&gt;&lt;P&gt;Also, need the text in DETAILS column to be wrapped, accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 17:52:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270273#M52614</guid>
      <dc:creator>tnqnt</dc:creator>
      <dc:date>2020-06-02T17:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270275#M52616</link>
      <description>&lt;P&gt;That works - question for you - is there any way to get rid of the left bar where it has the example, columns, rows?&amp;nbsp; So you just see the data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 17:57:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270275#M52616</guid>
      <dc:creator>tnqnt</dc:creator>
      <dc:date>2020-06-02T17:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270280#M52620</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I need just the data in the table, not the whole picture.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would like it without the extra columns and the left menu items.&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 18:21:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270280#M52620</guid>
      <dc:creator>tnqnt</dc:creator>
      <dc:date>2020-06-02T18:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270282#M52621</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; close side panels(1)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will close the side panels.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 18:31:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270282#M52621</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-02T18:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Output JMP table to formatted journal or picture with wrapped cells</title>
      <link>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270291#M52623</link>
      <description>&lt;P&gt;If you run the following after creating the Example data table I sent&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt; dt&amp;lt;&amp;lt; set window size(1500,800);

dt:text &amp;lt;&amp;lt; set Display Width(1200);
nw=new window("test",&amp;lt;&amp;lt;journal);
dt &amp;lt;&amp;lt; close side panels(1);
nw&amp;lt;&amp;lt;append(window("Example")&amp;lt;&amp;lt;get picture);

nw &amp;lt;&amp;lt; save presentation("$TEMP/text2.pptx");

open("$TEMP/text2.pptx");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You will get a PowerPoint slide that looks like this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="textpptx.PNG" style="width: 879px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24304i69472D27ED7E073D/image-size/large?v=v2&amp;amp;px=999" role="button" title="textpptx.PNG" alt="textpptx.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is pretty close to the best you can get using this approach.&amp;nbsp; You could take the time to create your own Display Window, using alternative display objects that should get you exactly what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 18:42:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Output-JMP-table-to-formatted-journal-or-picture-with-wrapped/m-p/270291#M52623</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-02T18:42:56Z</dc:date>
    </item>
  </channel>
</rss>

