<?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 can I Concatenate more than two columns with different variables? in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630766#M5034</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am a bit confused. I have been trying to use the TablePrint Subroutine however I couldn't because I have my data in separate columns!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have read the article few times but I couldn't figure out how to get my data in the right format before I print it in table using the function you suggested.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically, I have the following columns which I need to print in a table together:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;factors (character)&lt;/P&gt;
&lt;P&gt;DF (degrees of freedom)(numeric)&lt;/P&gt;
&lt;P&gt;SS (sum of squares)(numeric)&lt;/P&gt;
&lt;P&gt;MS (mean square)(numeric)&lt;/P&gt;
&lt;P&gt;F-ratio(numeric)&lt;/P&gt;
&lt;P&gt;p_value(numeric)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please guide me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Mar 2020 22:08:22 GMT</pubDate>
    <dc:creator>DJ20</dc:creator>
    <dc:date>2020-03-09T22:08:22Z</dc:date>
    <item>
      <title>How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/629978#M5030</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have calculated each column of the ANOVA table for the factorial design I have been working at. Now I need to combine them together to have the full ANOVA table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to define ANOVA to equal the concatenation of the Degrees of Freedom, Sum of Squares, Mean Square, F-ratio, P-value with a column of (the main factors and interaction between factors given in character variables):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;ANOVA = Factors || DF || SS || MS || Fratio || Pvalue ;&lt;BR /&gt;print ANOVA;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;However, because the factors are in character variable rather than numerical its given me the following error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;SPAN&gt;ERROR: All specified variables must be the same type.&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I changed it to the following. I was able to adjust the format of specific columns which is even better.&amp;nbsp;However with the method below I cant label the graph as ANOVA !!.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;print Factors || DF SS MS[format=10.03] Fratio[format=10.03] Pvalue[format=10.03];&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THanks,&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 23:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/629978#M5030</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-05T23:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/629988#M5031</link>
      <description>If you can drop out of IML for that portion, it would probably be the easiest solution.</description>
      <pubDate>Fri, 06 Mar 2020 01:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/629988#M5031</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-06T01:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630025#M5032</link>
      <description>&lt;P&gt;Here are some suggestions of ways to work around this problem. &amp;nbsp; As it's only the 1st column that is character, then the simplest solution is just to use rownames -&amp;nbsp; so form a numeric matrix called ANOVA by concatenation and then do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;print ANOVA [rowname=factors label='ANOVA table'];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that it is possible to use commas in a print statement to move to the next line so something like&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;print 'ANOVA table',fac DF [format=3.0] SS MS F p [format=pvalue6.4];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will give you something with a title above the table.&amp;nbsp; The pvalue SAS format can be useful here as it will print "&amp;lt;.0001" for very small values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively you can investigate the Table data type in IML which allows for mixed columns.&amp;nbsp; Rick has&amp;nbsp; &lt;A href="https://blogs.sas.com/content/iml/2017/04/03/print-tables-sasiml.html" target="_self"&gt;blogged about this here&lt;/A&gt; , but if your IML version is not up to date, you may not have this feature.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 09:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630025#M5032</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2020-03-06T09:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630034#M5033</link>
      <description>&lt;P&gt;If your goal is to print both character and numeric values in a single table, to use different formats for each column, and to provide a label for the table, then you can put the data into a SAS/IML table, assign formats to the variables, and use the &lt;A href="https://go.documentation.sas.com/?docsetId=imlug&amp;amp;docsetTarget=imlug_langref_sect507.htm&amp;amp;docsetVersion=14.2&amp;amp;locale=en" target="_self"&gt;TablePrint subroutine&lt;/A&gt; to display it. For an overview and examples, see the article, &lt;A href="https://blogs.sas.com/content/iml/2017/04/03/print-tables-sasiml.html" target="_self"&gt;"Print tables in SAS/IM."&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can even the TEMPLATE= option to specify the same ODS template that the SAS regression procedures use to display the ANOVA tables. See the "Advanced Printing" section in the same article.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tables were introduced in SAS/IML14.2 (released with SAS 9.4m4). For more about SAS/IML tables and other data structures, see the paper &lt;A href="http://support.sas.com/resources/papers/proceedings17/SAS0420-2017.pdf" target="_self"&gt;"More than Matrices" (Wicklin, 2017)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 10:45:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630034#M5033</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-03-06T10:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630766#M5034</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am a bit confused. I have been trying to use the TablePrint Subroutine however I couldn't because I have my data in separate columns!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have read the article few times but I couldn't figure out how to get my data in the right format before I print it in table using the function you suggested.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically, I have the following columns which I need to print in a table together:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;factors (character)&lt;/P&gt;
&lt;P&gt;DF (degrees of freedom)(numeric)&lt;/P&gt;
&lt;P&gt;SS (sum of squares)(numeric)&lt;/P&gt;
&lt;P&gt;MS (mean square)(numeric)&lt;/P&gt;
&lt;P&gt;F-ratio(numeric)&lt;/P&gt;
&lt;P&gt;p_value(numeric)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please guide me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 22:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630766#M5034</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-09T22:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630768#M5035</link>
      <description>&lt;P&gt;I ended up doing the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;COL = {"DF", "SS", "MS", "Fratio", "pvalue"};&lt;BR /&gt;ANOVA = DF || SS || MS || Fratio || Pvalue;&lt;BR /&gt;print ANOVA [rowname = factors colname =Col label="Factoraial ANOVA" format=10.03];&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I defined the columns names first. I have used || to concatenate the columns and saved it as ANOVA. Finally in the print stage I have inserted the factor as rowname and specified the the format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even though I don't need every single column to be formatted in the format I used but I wasn't able to figure out how to use the method in the article you suggested.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 22:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630768#M5035</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-09T22:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630769#M5036</link>
      <description>&lt;P&gt;I have attached the program and 2 different sets of data with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be great if you check it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any suggestion would be greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 22:17:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630769#M5036</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-09T22:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630772#M5037</link>
      <description>&lt;P&gt;dr rick's links show hwo to use table* functions in doc to create and add vars to table and set formats. Like tablecreate to ceate table and tablesetformat to set formats.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 23:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630772#M5037</guid>
      <dc:creator>WeiChen</dc:creator>
      <dc:date>2020-03-09T23:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630814#M5038</link>
      <description>&lt;P&gt;I am sorry, I don't have the time to check your program as it is quite large.&amp;nbsp; What I suggest you do is validate what you have done in IML against a standard.&amp;nbsp; You could export the design variables A B C D and response to a SAS dataset and then fit the model with main effects and 2-way interactions using PROC GLM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Ian&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 08:31:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630814#M5038</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2020-03-10T08:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630840#M5039</link>
      <description>&lt;P&gt;As Ian says, it is your responsibility to check or validate the program. Compare it to problems on which the answer is known (like from a textbook).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In answer to your latest question, here is how to create an ANOVA table and set the formats on three of the columns:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;

factors = {"Intercept", "X1", "X2"};
DF = {1, 1, 1};
SS = {123, 456, 789};
MS = {12, 34, 56};
Fratio = {2.1, 3.2, 4.3};
pvalue= {0.1, 0.01, 0.00001};

T = TableCreate("factors", factors);
call TableAddVar(T, {"DF" "SS" "MS" "Fratio" "pvalue"},
                      DF || SS || MS || Fratio ||pvalue);
call TableSetVarFormat(T, {"DF" "Fratio" "pvalue"}, {"BEST3." "9.4" "pvalue6.4"});
call TablePrint(T);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630840#M5039</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-03-10T10:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630850#M5041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Its giving me the following errors&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Invocation of unresolved module TABLECREATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Invocation of unresolved module TABLEADDVAR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Invocation of unresolved module TABLESETVARFORMAT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Invocation of unresolved module TABLEPRINT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;does that mean I am using an old version??&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;
&lt;P&gt;AS for the program, obviously I wasn't expecting you to use your own time to check my own work.. I only wanted you to run it to be able to see the output of the table because I wasn't able to upload a picture of the output here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;your help is greatly appreciated. Thanks a lot,&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:36:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630850#M5041</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-10T10:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630851#M5042</link>
      <description>&lt;P&gt;Thanks for your help&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/9374"&gt;@IanWakeling&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW I only wanted you to run the program to see how the table is constructed because I felt I didn't explain the situation correctly. I am not expecting you to waste you time checking my work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In terms of the calculations everything is correct. The only thing I was trying to improve is the look of the final table however there is no harm of checking it using PROC GLM.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:41:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630851#M5042</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-10T10:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630854#M5043</link>
      <description>&lt;P&gt;Yes, it means you are using an old version. As I said in an earlier post, "&lt;SPAN&gt;Tables were introduced in SAS/IML14.2 (released with SAS 9.4m4)."&amp;nbsp; That version of SAS was released in 2016.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If I remember correctly, you also do not have lists. Lists and tables are big features.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Are you running SAS through a company? A University? If your work is important, you might encourage your company to upgrade to SAS/IML 15.1 (SAS 9.4m6).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:45:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630854#M5043</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-03-10T10:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630855#M5044</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/315862"&gt;@WeiChen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using SAS 9.4 and it looks like its an old version because I tried the table*&amp;nbsp;functions before but they didn't work giving me lots of error messages.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for your reply anyway.&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:46:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630855#M5044</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-10T10:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630857#M5045</link>
      <description>&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes I am using it through a company. I will suggest that SAS should be upgraded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for you time and help.&lt;/P&gt;
&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 10:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/630857#M5045</guid>
      <dc:creator>DJ20</dc:creator>
      <dc:date>2020-03-10T10:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I Concatenate more than two columns with different variables?</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/631023#M5046</link>
      <description>&lt;P&gt;I misunderstood what you were asking for.&amp;nbsp; Looking at the last ANOVA table,&amp;nbsp; things would be improved if you used rowcatc(CLC) instead of rowcat(CLC).&amp;nbsp; The extra 'c' will compress the blanks and make things look more tidy. &amp;nbsp; As you probably want different formats for different columns, it might be better not to concatenate everything into one matrix, so switch to something similar to the 2nd suggestion that I made earlier:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT style="background-color: #ffffff;"&gt;print 'ANOVA table',CLC [format=$10.] DF [format=3.0] SS [format=8.3] MS [format=8.3] Fratio [format=6.2] pvalue [format=pvalue6.4];&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 17:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-can-I-Concatenate-more-than-two-columns-with-different/m-p/631023#M5046</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2020-03-10T17:09:42Z</dc:date>
    </item>
  </channel>
</rss>

