<?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 to put only one value label in graph, if labels are repeated. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/363954#M61359</link>
    <description>&lt;P&gt;Thanks George.&lt;BR /&gt;I guess this is better/right way of doing it.&lt;/P&gt;&lt;P&gt;Thanks again for help.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Mar 2021 17:37:50 GMT</pubDate>
    <dc:creator>HSS</dc:creator>
    <dc:date>2021-03-01T17:37:50Z</dc:date>
    <item>
      <title>How to put only one value label in graph, if labels are repeated.</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362187#M61192</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have a data set and I want to label my graph with respect to vales in a column. But the labelled column has repeated entries, is there any way to pick only first/last value of the label or any single unique value ?&lt;BR /&gt;&lt;BR /&gt;In my attached data, I want to plot 'LOC_X', 'LOC_Y' and want to Label it with 'Area Code'. But in this data, there are 5 same values of 'Area Code' for 5 different sets of X, Y. And this creates a mess! Not sure if there is any solution for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the alternate way, I have 'map boundaries' map installed but I do not know how to put 'Area Code' in it and if I use label option, I am ending up at the same place.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any help here ?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:11:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362187#M61192</guid>
      <dc:creator>HSS</dc:creator>
      <dc:date>2023-06-11T11:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to put only one value label in graph, if labels are repeated.</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362218#M61196</link>
      <description>&lt;P&gt;I'm not too familiar with this sort of coordinated data, but maybe you could calculate some sort of value based on LOC_X and LOC_Y and Area Code:&lt;CODE class=" language-jsl"&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(
	:LOC_X + :LOC_Y == Col Max(:LOC_X + :LOC_Y, :Area Code), :Area Code,
	Empty(), .
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Select Missing values based on this and unlabel them&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="jthi_0-1614178081983.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/30657i353E929CE708F105/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1614178081983.png" alt="jthi_0-1614178081983.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1614178089203.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/30658iC695044CEE078382/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1614178089203.png" alt="jthi_1-1614178089203.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2021 14:51:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362218#M61196</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-02-24T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to put only one value label in graph, if labels are repeated.</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362430#M61225</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17470"&gt;@HSS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;you can label the first value, and unlabel the others by the attached script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For Each Row(
	Row State( Row() ) = If( Col Rank( :Area Code, :Area Code ) == 1,
		Labeled State( 1 ),
		Labeled State( 0 )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Feb 2021 22:10:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/362430#M61225</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2021-02-24T22:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to put only one value label in graph, if labels are repeated.</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/363953#M61358</link>
      <description>&lt;P&gt;Hi Jthi,&lt;BR /&gt;&lt;BR /&gt;Thanks for for the reply. Yes, this is one solution. And I am also doing along this line only.&lt;BR /&gt;&lt;BR /&gt;Many thanks again for your response.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:34:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/363953#M61358</guid>
      <dc:creator>HSS</dc:creator>
      <dc:date>2021-03-01T17:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to put only one value label in graph, if labels are repeated.</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/363954#M61359</link>
      <description>&lt;P&gt;Thanks George.&lt;BR /&gt;I guess this is better/right way of doing it.&lt;/P&gt;&lt;P&gt;Thanks again for help.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:37:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-put-only-one-value-label-in-graph-if-labels-are-repeated/m-p/363954#M61359</guid>
      <dc:creator>HSS</dc:creator>
      <dc:date>2021-03-01T17:37:50Z</dc:date>
    </item>
  </channel>
</rss>

