<?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: Conacatenating SAS datas in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Conacatenating-SAS-datas/m-p/58815#M1988</link>
    <description>Hi:&lt;BR /&gt;
  This question doesn't seem related to SAS/GRAPH or ODS GRAPHICS. This might be a question that would be better asked in one of the other forums. Perhaps in the SAS Procedures forum, where you asked about data similar to what you've posted here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/message.jspa?messageID=32178#32178" target="_blank"&gt;http://support.sas.com/forums/message.jspa?messageID=32178#32178&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/message.jspa?messageID=32184#32184" target="_blank"&gt;http://support.sas.com/forums/message.jspa?messageID=32184#32184&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  In general, you use the SET statement in a DATA Step program or PROC APPEND to concatenate or combine datasets. To merge or join datasets, you would use the MERGE statement in a DATA Step program or join in PROC SQL.An overview of these techniques is contained in this discussion:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a001081414.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a001081414.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 17 Feb 2010 22:43:02 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-02-17T22:43:02Z</dc:date>
    <item>
      <title>Conacatenating SAS datas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Conacatenating-SAS-datas/m-p/58814#M1987</link>
      <description>Hello ,&lt;BR /&gt;
&lt;BR /&gt;
could you please guide me.I want to concatenate my three datafiles.I had the data in .dat format and i used the following codes to permamnently store my SAS dataset in the C drive using code :&lt;BR /&gt;
&lt;BR /&gt;
libname sc 'C:\SAS';&lt;BR /&gt;
&lt;BR /&gt;
data sc.period1;&lt;BR /&gt;
	infile 'h:\SAScourse\ period1_sales_data.dat';&lt;BR /&gt;
	input 	TransactionID   $1-8&lt;BR /&gt;
			DateofSale	    $9-18&lt;BR /&gt;
			TimeofSale	    $19-26&lt;BR /&gt;
			LaptopModel	    $27-32&lt;BR /&gt;
			UnitsSold	    33-35&lt;BR /&gt;
			Warranty        36;&lt;BR /&gt;
proc print data=sc. period1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data   period2A;&lt;BR /&gt;
	infile 'h:\SAScourse\period2_sales_data_A.dat';&lt;BR /&gt;
	Input 	TransactionID $1-8&lt;BR /&gt;
			DateofSale	  $9-18&lt;BR /&gt;
			LaptopModel   $19-24&lt;BR /&gt;
			UnitsSold      25-27&lt;BR /&gt;
			Warranty       28;&lt;BR /&gt;
proc print data=period2A;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data period2B;&lt;BR /&gt;
	infile 'c:\Cwa\period1_sales_data.dat';&lt;BR /&gt;
	input 	TransactionID   $1-8&lt;BR /&gt;
			DateofSale	    $9-16&lt;BR /&gt;
	;		&lt;BR /&gt;
run;&lt;BR /&gt;
	proc print data=period2B;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
I want to concatenate the there datasets ' period 1', 'period 2A,' and  ' Period 2B' into one single SAS datafile to be stored permanently in my 'C:\SAS'; to make useful analysis of data .&lt;BR /&gt;
&lt;BR /&gt;
Kind  Regards ,&lt;BR /&gt;
mark</description>
      <pubDate>Wed, 17 Feb 2010 21:44:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Conacatenating-SAS-datas/m-p/58814#M1987</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-02-17T21:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Conacatenating SAS datas</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Conacatenating-SAS-datas/m-p/58815#M1988</link>
      <description>Hi:&lt;BR /&gt;
  This question doesn't seem related to SAS/GRAPH or ODS GRAPHICS. This might be a question that would be better asked in one of the other forums. Perhaps in the SAS Procedures forum, where you asked about data similar to what you've posted here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/message.jspa?messageID=32178#32178" target="_blank"&gt;http://support.sas.com/forums/message.jspa?messageID=32178#32178&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/message.jspa?messageID=32184#32184" target="_blank"&gt;http://support.sas.com/forums/message.jspa?messageID=32184#32184&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  In general, you use the SET statement in a DATA Step program or PROC APPEND to concatenate or combine datasets. To merge or join datasets, you would use the MERGE statement in a DATA Step program or join in PROC SQL.An overview of these techniques is contained in this discussion:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a001081414.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a001081414.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 17 Feb 2010 22:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Conacatenating-SAS-datas/m-p/58815#M1988</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-17T22:43:02Z</dc:date>
    </item>
  </channel>
</rss>

