<?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: Are these an unacceptable solutions to a SAS problem? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Are-these-an-unacceptable-solutions-to-a-SAS-problem/m-p/283152#M57673</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/42345"&gt;@rogerjdeangelis﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think people appreciate knowing about all options. &amp;nbsp;Using SAS to call R functions for utilities like this can be handy for your toolbox, but most SAS users don't have R configured within their SAS environments. &amp;nbsp;So when providing an answer in these forums, the suggestion to use SAS' integration methods with R is academic -- most people can't apply those techniques in their workplace. &amp;nbsp;So a pure SAS answer is usually preferred, and is still the most relevant/helpful response that you can provide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For this particular example, SAS has import/export utilities that can do similar work if you have SAS/ACCESS to PC Files (to read the Excel files). &amp;nbsp;And if you don't have SAS/ACCESS but do have ability to call OS commands (required by R integration methods), then you can achieve the same by using VB Script or PowerShell or Python without needing a specialized R environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For people who&amp;nbsp;&lt;STRONG&gt;do&lt;/STRONG&gt; have R on their SAS environment, the main benefit is the ability to reuse R packages to experiment with methods that others have contributed to the R community, or perhaps to reuse work created by colleagues who use R primarily. &amp;nbsp;See this demo and discussion from Rick:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=nmRQ3MtkG6A" target="_blank"&gt;https://www.youtube.com/watch?v=nmRQ3MtkG6A&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 09 Jul 2016 15:47:18 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2016-07-09T15:47:18Z</dc:date>
    <item>
      <title>Are these an unacceptable solutions to a SAS problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-these-an-unacceptable-solutions-to-a-SAS-problem/m-p/283149#M57672</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Are these an unacceptable solutions to a SAS problem?&lt;BR /&gt;&lt;BR /&gt;Seems to a lot of controversy about the relation between R and SAS.

A user wanted to convert excel to a csv

proc iml;
    submit / R;
    library(rio)
    convert('d:xls/xls_sample.xlsx','d:xls/xls_sample.csv')
endsubmit;
quit;

or

%utl_submit_r64(
   library(rio);
   convert('d:xls/xls_sample.xlsx','d:xls/xls_sample.csv');
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Jul 2016 15:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-these-an-unacceptable-solutions-to-a-SAS-problem/m-p/283149#M57672</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-07-09T15:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Are these an unacceptable solutions to a SAS problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-these-an-unacceptable-solutions-to-a-SAS-problem/m-p/283152#M57673</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/42345"&gt;@rogerjdeangelis﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think people appreciate knowing about all options. &amp;nbsp;Using SAS to call R functions for utilities like this can be handy for your toolbox, but most SAS users don't have R configured within their SAS environments. &amp;nbsp;So when providing an answer in these forums, the suggestion to use SAS' integration methods with R is academic -- most people can't apply those techniques in their workplace. &amp;nbsp;So a pure SAS answer is usually preferred, and is still the most relevant/helpful response that you can provide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For this particular example, SAS has import/export utilities that can do similar work if you have SAS/ACCESS to PC Files (to read the Excel files). &amp;nbsp;And if you don't have SAS/ACCESS but do have ability to call OS commands (required by R integration methods), then you can achieve the same by using VB Script or PowerShell or Python without needing a specialized R environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For people who&amp;nbsp;&lt;STRONG&gt;do&lt;/STRONG&gt; have R on their SAS environment, the main benefit is the ability to reuse R packages to experiment with methods that others have contributed to the R community, or perhaps to reuse work created by colleagues who use R primarily. &amp;nbsp;See this demo and discussion from Rick:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=nmRQ3MtkG6A" target="_blank"&gt;https://www.youtube.com/watch?v=nmRQ3MtkG6A&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 15:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-these-an-unacceptable-solutions-to-a-SAS-problem/m-p/283152#M57673</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-07-09T15:47:18Z</dc:date>
    </item>
  </channel>
</rss>

