<?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 SAS GRAPH FROM A BIG DATA in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255661#M48870</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I have a big data( more than 3000 000 observations ) for every year, and I have more than 20 years.&lt;/P&gt;
&lt;P&gt;I want to make a graph from a many big tables without making :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data Tab;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set T1 T2 T3 T4&amp;nbsp; ... Tn;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Mar 2016 21:22:49 GMT</pubDate>
    <dc:creator>LineMoon</dc:creator>
    <dc:date>2016-03-09T21:22:49Z</dc:date>
    <item>
      <title>SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255661#M48870</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I have a big data( more than 3000 000 observations ) for every year, and I have more than 20 years.&lt;/P&gt;
&lt;P&gt;I want to make a graph from a many big tables without making :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data Tab;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set T1 T2 T3 T4&amp;nbsp; ... Tn;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 21:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255661#M48870</guid>
      <dc:creator>LineMoon</dc:creator>
      <dc:date>2016-03-09T21:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255663#M48871</link>
      <description>Because you don't want to duplicate the data?&lt;BR /&gt;Storing time series of data in one table is often convenient since reduces the steps to out it together each time.&lt;BR /&gt;But, do what you are suggesting but as a view instead.</description>
      <pubDate>Wed, 09 Mar 2016 21:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255663#M48871</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-09T21:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255669#M48873</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;Yes, I do not want to duplicate data likes this :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not want to do this :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data tab;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set T1 T2 ....Tn;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Storing time series of data in one table" it can be more expenssive, I will have a big data.&lt;/P&gt;
&lt;P&gt;I want to make my graph without making any concatanation..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 21:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255669#M48873</guid>
      <dc:creator>LineMoon</dc:creator>
      <dc:date>2016-03-09T21:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255678#M48876</link>
      <description>&lt;P&gt;Without specifying what graph and options you need it is difficult to provide exact help. However, If your final graph is to have Year as a component it may be that what you should do is summarize each year of data into a separate summary data set, make sure there is a year variable in the summary, then combine those summarized sets before graphing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There really isn't going to be much hope of getting a graph from multiple sets as none of the SAS graphing approaches I am aware of support more than a single input data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I usually summarize data before graphing anyway so that I know exactly what is being calculated as any of the graph procudure's summaries usually fall afoul of a data gotcha somewhere with my data.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 22:19:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255678#M48876</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-03-09T22:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255681#M48877</link>
      <description>&lt;P&gt;If you want to use all your data, you need to process all your data.&lt;/P&gt;
&lt;P&gt;This can be as indicated, either stack your data together and process.&amp;nbsp;Depending on your set up, 60 million rows may not be much. I regularly worked with a dataset that was 30 million per year - after removing multiple entries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A second method is to process each data set individually and stack the results - the loopy way - usually accomplished via a macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A third method is to create a view such that the data is only combined for the analysis and then not stored permanently.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a001278887.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a001278887.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 22:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255681#M48877</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-09T22:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS GRAPH FROM A BIG DATA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255735#M48895</link>
      <description>Concatenation must take place if you want a single graph output. &lt;BR /&gt;If you don't want to store the data concatenated the only option I see is a view. Should be sufficient.</description>
      <pubDate>Thu, 10 Mar 2016 07:04:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-GRAPH-FROM-A-BIG-DATA/m-p/255735#M48895</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-10T07:04:59Z</dc:date>
    </item>
  </channel>
</rss>

