<?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 Graphing vertical lines in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687804#M38956</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating a vertical line graph of data that was collected at various station points along a pipeline. In some of the areas, there&amp;nbsp;are null values for the data at a particular station or multiple stations. I would like the vertical line to stop at the null points, and continue again when there is data. (like a dashed line) Currently, the null valued data is being ignored, and a line is being drawn from the last point with data to the next point with data. I have looked all through the advanced properties of the graph, and can't find anything that will do what I need. I don't what to have to create multiple series within the graph to create this broken line.&lt;/P&gt;&lt;P&gt;Does anyone know how to accomplish what I need? I've attached a picture of what I need it to look like.&lt;/P&gt;&lt;P&gt;thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/345767_Capture.JPG" style="width: 620px; height: 181px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Apr 2017 17:38:48 GMT</pubDate>
    <dc:creator>PattyVogel</dc:creator>
    <dc:date>2017-04-07T17:38:48Z</dc:date>
    <item>
      <title>Graphing vertical lines</title>
      <link>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687804#M38956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating a vertical line graph of data that was collected at various station points along a pipeline. In some of the areas, there&amp;nbsp;are null values for the data at a particular station or multiple stations. I would like the vertical line to stop at the null points, and continue again when there is data. (like a dashed line) Currently, the null valued data is being ignored, and a line is being drawn from the last point with data to the next point with data. I have looked all through the advanced properties of the graph, and can't find anything that will do what I need. I don't what to have to create multiple series within the graph to create this broken line.&lt;/P&gt;&lt;P&gt;Does anyone know how to accomplish what I need? I've attached a picture of what I need it to look like.&lt;/P&gt;&lt;P&gt;thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/345767_Capture.JPG" style="width: 620px; height: 181px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Apr 2017 17:38:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687804#M38956</guid>
      <dc:creator>PattyVogel</dc:creator>
      <dc:date>2017-04-07T17:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing vertical lines</title>
      <link>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687805#M38957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to treat each break in the dataset as a new pair of data. So split your data&amp;nbsp;where a&amp;nbsp;null value occurs and treat it as a pair.&amp;nbsp; Implementing this depends on the format of the data of course&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Apr 2017 20:47:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687805#M38957</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-04-07T20:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing vertical lines</title>
      <link>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687806#M38958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. That's exactly what I was hoping I didn't have to do. I just can't believe that when you create a graph, it doesn't recognize null values in data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 18:34:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687806#M38958</guid>
      <dc:creator>PattyVogel</dc:creator>
      <dc:date>2017-04-10T18:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing vertical lines</title>
      <link>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687807#M38959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;of course you don't have to stick with arcmap, since matplotlib is builtin.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; matplotlib&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;pyplot &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; plt
x &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;arange&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
y &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.25&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.5&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.25&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
plt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;plot&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; y&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; linestyle&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'-'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; marker&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'o'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;matplotlib&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;lines&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Line2D at &lt;SPAN class="number token"&gt;0x17de70d9ac8&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

plt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;show&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;yields&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/346031_sample_graph.png" style="width: 620px; height: 450px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:56:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/graphing-vertical-lines/m-p/687807#M38959</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T04:56:12Z</dc:date>
    </item>
  </channel>
</rss>

