<?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: Graphs repeated measures ANOVA in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/52302#M29609</link>
    <description>&lt;P&gt;which graph platform are you using?&lt;/P&gt;
&lt;P&gt;also, plotting the data as an ANOVA, the both variables on the x-axis must be nominal.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2018 14:40:07 GMT</pubDate>
    <dc:creator>Byron_JMP</dc:creator>
    <dc:date>2018-02-28T14:40:07Z</dc:date>
    <item>
      <title>Graphs repeated measures ANOVA</title>
      <link>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/51812#M29389</link>
      <description>&lt;P&gt;Hi, I am doing a repeated measures analysis and while making the graphs for one of the variables got stuck. So this graph has a group variable on the X axis(nominal) and the Y axis has 4 values of DNA (continuous)&amp;nbsp;at 4 different time points. I got the graph neat and nice but the x axis shows values for both groups separately while I want them side by side. e.g. day 0 DNA both groups together, Day 4 DNA both groups together (side by side) but apparantly have tried everything but can't figure out how to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 06:01:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/51812#M29389</guid>
      <dc:creator>QS</dc:creator>
      <dc:date>2018-02-22T06:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Graphs repeated measures ANOVA</title>
      <link>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/52302#M29609</link>
      <description>&lt;P&gt;which graph platform are you using?&lt;/P&gt;
&lt;P&gt;also, plotting the data as an ANOVA, the both variables on the x-axis must be nominal.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 14:40:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/52302#M29609</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2018-02-28T14:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Graphs repeated measures ANOVA</title>
      <link>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/52373#M29652</link>
      <description>&lt;P&gt;I am making a guess, but I think you are trying to graph your results using Graph Builder.&amp;nbsp; If so, the only way that I know of to get the result you need is to add a second X column into your data table, which shows the second group of X values.&amp;nbsp; Graph Builder will only provide separate axes if there are separate columns.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Double.PNG" style="width: 933px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9647i779300DBB49E0C63/image-size/large?v=v2&amp;amp;px=999" role="button" title="Double.PNG" alt="Double.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;In the example, drag the Y axis to the Y drop area, and then drag the 2 X axis variables one at a time to the X axis drop area, placing them side by side.&amp;nbsp; Below is the script that produces the above graph&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// Sample Data
dt = New Table( "Example",
	Add Rows( 40 ),
	New Column( "Group 1",
		Character( 7 ),
		"Nominal",
		Set Values(
			{"A", "A", "A", "A", "A", "B", "B", "B", "B", "B", "Control", "Control", "Control",
			"Control", "Control", "Placebo", "Placebo", "Placebo", "Placebo", "Placebo", "", "",
			"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}
		)
	),
	New Column( "BP 8M",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 4, 0 ),
		Set Values(
			[182.595915155309, 172.512940709438, 180.774421425438, 180.620679187184,
			184.202187190097, 171.439595422176, 174.589230394192, 179.109260746268,
			177.787439187438, 180.687489407623, 181.804016028632, 178.085353285743,
			186.313144806757, 175.347853139956, 181.103289178403, 181.288352739913,
			178.777832744608, 176.763152449944, 175.768608854708, 184.167672392284,
			173.550216520736, 180.718560564297, 188.500473854652, 176.718084823659,
			180.174755903154, 181.462075626649, 180.330100756984, 172.886222586229,
			192.050244302843, 187.037431530346, 185.501158177984, 183.877324525276,
			179.931613365546, 180.493132509235, 174.944992509985, 177.663853371957,
			174.717037207769, 186.677919707096, 178.12326354079, 171.230704316198]
		)
	),
	New Column( "Group 2",
		Character,
		"Nominal",
		Set Values(
			{"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A",
			"A", "A", "A", "A", "A", "A", "A", "A", "A", "Control", "Control", "Control",
			"Control", "Control", "Placebo", "Placebo", "Placebo", "Placebo", "Placebo"}
		)
	)
);

// Graph Script
Graph Builder(
	Variables( X( :Group 1 ), X( :Group 2 ), Y( :BP 8M ) ),
	Elements( Position( 1, 1 ), Points( X, Y, Legend( 4 ) ) ),
	Elements( Position( 2, 1 ), Points( X, Y, Legend( 5 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Feb 2018 19:49:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphs-repeated-measures-ANOVA/m-p/52373#M29652</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-02-28T19:49:03Z</dc:date>
    </item>
  </channel>
</rss>

