<?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 display count of zipcodes that have been visited by the number of users per day in a bar chart? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185538#M37148</link>
    <description>&lt;P&gt;can you show an example of the csv file?&lt;/P&gt;</description>
    <pubDate>Tue, 25 Aug 2015 14:18:56 GMT</pubDate>
    <dc:creator>diogofgm</dc:creator>
    <dc:date>2015-08-25T14:18:56Z</dc:date>
    <item>
      <title>How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185537#M37147</link>
      <description>&lt;P&gt;I want to assign the count of users on the X-axis where series of Zipcode on Y-axis. I have one .csv file which has the two columns as Time, Zipcode and Users. &lt;/P&gt;

&lt;P&gt;Can you please help me with this?&lt;BR /&gt;
Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2015 13:32:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185537#M37147</guid>
      <dc:creator>rupesh_patil20</dc:creator>
      <dc:date>2015-08-25T13:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185538#M37148</link>
      <description>&lt;P&gt;can you show an example of the csv file?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:18:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185538#M37148</guid>
      <dc:creator>diogofgm</dc:creator>
      <dc:date>2015-08-25T14:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185539#M37149</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search to get data from csv file | stats count(Users) as count by Zipcode 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;On the visualization, select Bar chart.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2015 15:38:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185539#M37149</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-08-25T15:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185540#M37150</link>
      <description>&lt;P&gt;Assuming you load the csv file into Splunk, you could get the users per day by zipcode in a bar chart with something like this:&lt;/P&gt;

&lt;P&gt;source="zipcodetest.csv" sourcetype="csv" | timechart span=1d count(user) by zipcode&lt;/P&gt;

&lt;P&gt;Then choose the "Bar" visualization.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2015 16:42:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185540#M37150</guid>
      <dc:creator>jvarmazis_splun</dc:creator>
      <dc:date>2015-08-25T16:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185541#M37151</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I will make you available csv file soon.. &lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 03:54:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185541#M37151</guid>
      <dc:creator>rupesh_patil20</dc:creator>
      <dc:date>2015-08-26T03:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185542#M37152</link>
      <description>&lt;P&gt;Thanks somesoni2, I will make the changes and will update you..&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 03:55:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185542#M37152</guid>
      <dc:creator>rupesh_patil20</dc:creator>
      <dc:date>2015-08-26T03:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to display count of zipcodes that have been visited by the number of users per day in a bar chart?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185543#M37153</link>
      <description>&lt;P&gt;Thanks jvarmazis, I will make the changes and will update you..&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 03:56:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-count-of-zipcodes-that-have-been-visited-by-the/m-p/185543#M37153</guid>
      <dc:creator>rupesh_patil20</dc:creator>
      <dc:date>2015-08-26T03:56:56Z</dc:date>
    </item>
  </channel>
</rss>

