<?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: Marker in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235562#M46488</link>
    <description>&lt;P&gt;Use a script like this to set the marker you prefer for your desired rows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rows = dt &amp;lt;&amp;lt; Select Where( :Age == 14 );
rows &amp;lt;&amp;lt; Markers( 8 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then when you make any visuals, those markers will be applied.&amp;nbsp; Or if you prefer not to do through scripting you can do this:&lt;/P&gt;
&lt;P&gt;1. Right click on the value in your data table you wish to set markers for&lt;/P&gt;
&lt;P&gt;2. Select Matching Cells&lt;/P&gt;
&lt;P&gt;3. From Row menu choose Markers and pick your marker from there&lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 04:38:11 GMT</pubDate>
    <dc:creator>Mark_Zwald</dc:creator>
    <dc:date>2019-11-20T04:38:11Z</dc:date>
    <item>
      <title>Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235559#M46487</link>
      <description>&lt;P&gt;How to set the legend in age=14 to a circle with no fill thru scripting?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 04:02:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235559#M46487</guid>
      <dc:creator>skyzvoir0001</dc:creator>
      <dc:date>2019-11-20T04:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235562#M46488</link>
      <description>&lt;P&gt;Use a script like this to set the marker you prefer for your desired rows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rows = dt &amp;lt;&amp;lt; Select Where( :Age == 14 );
rows &amp;lt;&amp;lt; Markers( 8 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then when you make any visuals, those markers will be applied.&amp;nbsp; Or if you prefer not to do through scripting you can do this:&lt;/P&gt;
&lt;P&gt;1. Right click on the value in your data table you wish to set markers for&lt;/P&gt;
&lt;P&gt;2. Select Matching Cells&lt;/P&gt;
&lt;P&gt;3. From Row menu choose Markers and pick your marker from there&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 04:38:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235562#M46488</guid>
      <dc:creator>Mark_Zwald</dc:creator>
      <dc:date>2019-11-20T04:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235843#M46518</link>
      <description>Thanks! The markers on the plot changed. However, why didnt it change on the legend part?</description>
      <pubDate>Wed, 20 Nov 2019 23:29:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235843#M46518</guid>
      <dc:creator>skyzvoir0001</dc:creator>
      <dc:date>2019-11-20T23:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235861#M46523</link>
      <description>&lt;P&gt;Here is what i meant&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate(
	Y( :height ),
	X( :weight ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Row Legend(
				age,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

ab = Data Table( "Big Class" );
ab &amp;lt;&amp;lt; Select Where( :Age == 12 ) &amp;lt;&amp;lt; Colors( 1 ) &amp;lt;&amp;lt; Markers( 8 ) &amp;lt;&amp;lt; clear select;&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;The row legend where age=12 did not change however the markers on the plot did.&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-center" image-alt="Capture10.PNG" style="width: 505px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/20419i615599A7E19FC226/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture10.PNG" alt="Capture10.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 14:36:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235861#M46523</guid>
      <dc:creator>skyzvoir0001</dc:creator>
      <dc:date>2019-11-21T14:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235984#M46554</link>
      <description>&lt;P&gt;You can set individual markers manually by double-clicking on the legend.&amp;nbsp; In the popup window right click on the marker of interest and select Marker &amp;gt; (click on desired marker here).&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 16:44:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235984#M46554</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2019-11-21T16:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235990#M46559</link>
      <description>Hey thanks for the reply! But is there a way to do it thru scripting? Im trying to make a script dynamically which copies the plots directly to a powerpoint and I’ve been stuck on how to change the legend part.</description>
      <pubDate>Thu, 21 Nov 2019 20:37:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235990#M46559</guid>
      <dc:creator>skyzvoir0001</dc:creator>
      <dc:date>2019-11-21T20:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/235993#M46562</link>
      <description>&lt;P&gt;If you click the red triangle and select save script you will see the necessary JSL commands to change the marker.&amp;nbsp; Here's an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data/Car Physical Data.jmp");

dt &amp;lt;&amp;lt; Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( :Displacement ), Y( :Weight ), Overlay( :Country ) ),
	Elements( Points( X, Y, Legend( 3 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				3,
				Properties( 2, {Marker( "Circle" )}, Item ID( "USA", 1 ) )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Nov 2019 21:41:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/235993#M46562</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2019-11-21T21:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Marker</title>
      <link>https://community.jmp.com/t5/Discussions/Marker/m-p/236023#M46567</link>
      <description>Thank you very much!</description>
      <pubDate>Fri, 22 Nov 2019 01:37:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Marker/m-p/236023#M46567</guid>
      <dc:creator>skyzvoir0001</dc:creator>
      <dc:date>2019-11-22T01:37:34Z</dc:date>
    </item>
  </channel>
</rss>

