<?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: Converting R Code to SAS in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526350#M16293</link>
    <description>&lt;PRE&gt;require(dplyr)
#require(openxlsx)
source("bisg_proxy/new_func.R")


ia_s &amp;lt;-read.csv('Overrides for R.csv', colClasses = 'character')


#ia_s &amp;lt;- read.xlsx('Policy Exceptions for R.xlsx')

#add geo tract and geo block

ia_2&amp;lt;- ia_s %&amp;gt;%
  mutate(geo_tract=paste(state, county, censustrac, sep=''),
         geo_tract=gsub('[.]','',geo_tract))%&amp;gt;%
  mutate(geo_block=paste(state, county, censustrac, blockgrp, sep=''),
         geo_block=gsub('[.]','',geo_block))



# if blockgrp == 0, BISG at the tract level
#note duplicated primary as secondary for name/dob as no secondary in file

# if blockgrp == 0, BISG at the tract level

ia_t &amp;lt;- ia_2 %&amp;gt;%
  filter(blockgrp %in% c("0",NA)) %&amp;gt;%
  applyProxy(pri_first_name = 'pri_first_name', 
             pri_last_name = 'pri_last_name',
             sec_first_name = 'sec_first_name',
             geoid = 'geo_tract',
             geoid_key = 'GeoInd',
             threshold = .5,
             keepall = T,
             census_geog = tract_attr_over18)


# if blockgrp != 0, BISG at the block group level
ia_b &amp;lt;- ia_2 %&amp;gt;%
  filter(BlockGrop != '0') %&amp;gt;%
  applyProxy(pri_first_name = 'pri_first_name', 
             pri_last_name = 'pri_last_name',
             sec_first_name = 'sec_first_name',
             geoid = 'geo_block',
             geoid_key = 'geoind',
             threshold = .5,
             keepall = T,
             census_geog = blkgrp_attr_over18)

ia_p &amp;lt;- rbind(ia_t, ia_b) %&amp;gt;%
  arrange(race, gender)

#update header names if applicable 
ia_p_s &amp;lt;- ia_p %&amp;gt;%
  select(application_id, gender, race, pri_femaleprob:sec_maleprob, 
         Probability_Asian:Probability_White, pri_address, pri_city, pri_state, pri_zip, state, county, censustrac, blockgrp, msa, pri_first_name, pri_last_name)

# this exports your file into your folder as a .csv
write.csv(ia_p_s, file='Policy Exceptionsw no DOB proxied.csv', row.names=FALSE)&lt;/PRE&gt;</description>
    <pubDate>Fri, 11 Jan 2019 13:18:13 GMT</pubDate>
    <dc:creator>asherer</dc:creator>
    <dc:date>2019-01-11T13:18:13Z</dc:date>
    <item>
      <title>Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526206#M16275</link>
      <description>&lt;P&gt;Wondering if anyone has a good site to convert R code to SAS code. I was wondering if I can get help converting the following code to SAS. Any guidance is appreciative. require(dplyr) source("bisg_proxy/new_func.R") ia_s &amp;lt;-read.csv('ready_for_r.csv', colClasses = 'character') #add geo tract and geo block ia_2&amp;lt;- ia_s %&amp;gt;% mutate(geo_tract=paste(State, County, Censustrac, sep=''), geo_tract=gsub('[.]','',geo_tract))%&amp;gt;% mutate(geo_block=paste(State, County, Censustrac, BlockGrp, sep=''), geo_block=gsub('[.]','',geo_block)) # if blockgrp == 0, BISG at the tract level #note duplicated primary as secondary for name/dob as no secondary in file # if blockgrp == 0, BISG at the tract level ia_t &amp;lt;- ia_2 %&amp;gt;% filter(BlockGrp %in% c("0",NA)) %&amp;gt;% applyProxy(pri_first_name = 'pri_first_name', pri_last_name = 'pri_last_name', sec_first_name = 'sec_first_name', geoid = 'geo_tract', geoid_key = 'GeoInd', threshold = .75, keepall = T, census_geog = tract_attr_over18) # if blockgrp != 0, BISG at the block group level ia_b &amp;lt;- ia_2 %&amp;gt;% filter(BlockGrp != '0') %&amp;gt;% applyProxy(pri_first_name = 'pri_first_name', pri_last_name = 'pri_last_name', sec_first_name = 'sec_first_name', geoid = 'geo_block', geoid_key = 'geoind', threshold = .75, keepall = T, census_geog = blkgrp_attr_over18) ia_p &amp;lt;- rbind(ia_t, ia_b) %&amp;gt;% arrange(race, gender) #update header names if applicable ia_p_s &amp;lt;- ia_p %&amp;gt;% select(application_id, gender, race, pri_femaleprob:sec_maleprob, Probability_Asian:Probability_White, pri_address, pri_city, pri_state, pri_zip, State, County, Censustrac, BlockGrp, MSA, pri_first_name, pri_last_name) # this exports your file into your folder as a .csv write.csv(ia_p_s, file='proxied.csv', row.names=FALSE&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:15:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526206#M16275</guid>
      <dc:creator>asherer</dc:creator>
      <dc:date>2019-01-10T21:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526207#M16276</link>
      <description>&lt;P&gt;You need to re-format your message so it is readable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Click on the {i} icon and paste your R-code into that window. Make sure you have one command on one line; not many commands on one line.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526207#M16276</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-10T21:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526209#M16277</link>
      <description>&lt;P&gt;There is no automatic conversion as far as I know. Can you post your code reformatted to be legible and then maybe we can offer some options?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think if you post your code using a code block (6/7th icon) in the Rich Text editor.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/221781"&gt;@asherer&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Wondering if anyone has a good site to convert R code to SAS code. I was wondering if I can get help converting the following code to SAS. Any guidance is appreciative. require(dplyr) source("bisg_proxy/new_func.R") ia_s &amp;lt;-read.csv('ready_for_r.csv', colClasses = 'character') #add geo tract and geo block ia_2&amp;lt;- ia_s %&amp;gt;% mutate(geo_tract=paste(State, County, Censustrac, sep=''), geo_tract=gsub('[.]','',geo_tract))%&amp;gt;% mutate(geo_block=paste(State, County, Censustrac, BlockGrp, sep=''), geo_block=gsub('[.]','',geo_block)) # if blockgrp == 0, BISG at the tract level #note duplicated primary as secondary for name/dob as no secondary in file # if blockgrp == 0, BISG at the tract level ia_t &amp;lt;- ia_2 %&amp;gt;% filter(BlockGrp %in% c("0",NA)) %&amp;gt;% applyProxy(pri_first_name = 'pri_first_name', pri_last_name = 'pri_last_name', sec_first_name = 'sec_first_name', geoid = 'geo_tract', geoid_key = 'GeoInd', threshold = .75, keepall = T, census_geog = tract_attr_over18) # if blockgrp != 0, BISG at the block group level ia_b &amp;lt;- ia_2 %&amp;gt;% filter(BlockGrp != '0') %&amp;gt;% applyProxy(pri_first_name = 'pri_first_name', pri_last_name = 'pri_last_name', sec_first_name = 'sec_first_name', geoid = 'geo_block', geoid_key = 'geoind', threshold = .75, keepall = T, census_geog = blkgrp_attr_over18) ia_p &amp;lt;- rbind(ia_t, ia_b) %&amp;gt;% arrange(race, gender) #update header names if applicable ia_p_s &amp;lt;- ia_p %&amp;gt;% select(application_id, gender, race, pri_femaleprob:sec_maleprob, Probability_Asian:Probability_White, pri_address, pri_city, pri_state, pri_zip, State, County, Censustrac, BlockGrp, MSA, pri_first_name, pri_last_name) # this exports your file into your folder as a .csv write.csv(ia_p_s, file='proxied.csv', row.names=FALSE&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526209#M16277</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-10T21:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526340#M16290</link>
      <description>&lt;P&gt;Sorry not sure what I did when I pasted it the first time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;require(dplyr)&lt;/P&gt;&lt;P&gt;source("bisg_proxy/new_func.R")&lt;/P&gt;&lt;P&gt;ia_s &amp;lt;-read.csv('ready_for_r.csv', colClasses = 'character')&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;#add geo tract and geo block&lt;/P&gt;&lt;P&gt;ia_2&amp;lt;- ia_s %&amp;gt;%&lt;BR /&gt;&amp;nbsp; mutate(geo_tract=paste(State, County, Censustrac, sep=''),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geo_tract=gsub('[.]','',geo_tract))%&amp;gt;%&lt;BR /&gt;&amp;nbsp; mutate(geo_block=paste(State, County, Censustrac, BlockGrp, sep=''),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geo_block=gsub('[.]','',geo_block))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# if blockgrp == 0, BISG at the tract level&lt;BR /&gt;#note duplicated primary as secondary for name/dob as no secondary in file&lt;/P&gt;&lt;P&gt;# if blockgrp == 0, BISG at the tract level&lt;/P&gt;&lt;P&gt;ia_t &amp;lt;- ia_2 %&amp;gt;%&lt;BR /&gt;&amp;nbsp; filter(BlockGrp %in% c("0",NA)) %&amp;gt;%&lt;BR /&gt;&amp;nbsp; applyProxy(pri_first_name = 'pri_first_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pri_last_name = 'pri_last_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sec_first_name = 'sec_first_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoid = 'geo_tract',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoid_key = 'GeoInd',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; threshold = .75,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keepall = T,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; census_geog = tract_attr_over18)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# if blockgrp != 0, BISG at the block group level&lt;BR /&gt;ia_b &amp;lt;- ia_2 %&amp;gt;%&lt;BR /&gt;&amp;nbsp; filter(BlockGrp != '0') %&amp;gt;%&lt;BR /&gt;&amp;nbsp; applyProxy(pri_first_name = 'pri_first_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pri_last_name = 'pri_last_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sec_first_name = 'sec_first_name',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoid = 'geo_block',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoid_key = 'geoind',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; threshold = .75,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keepall = T,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; census_geog = blkgrp_attr_over18)&lt;/P&gt;&lt;P&gt;ia_p &amp;lt;- rbind(ia_t, ia_b) %&amp;gt;%&lt;BR /&gt;&amp;nbsp; arrange(race, gender)&lt;/P&gt;&lt;P&gt;#update header names if applicable&lt;BR /&gt;ia_p_s &amp;lt;- ia_p %&amp;gt;%&lt;BR /&gt;&amp;nbsp; select(application_id, gender, race, pri_femaleprob:sec_maleprob,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Probability_Asian:Probability_White, pri_address, pri_city, pri_state, pri_zip, State, County, Censustrac, BlockGrp, MSA, pri_first_name, pri_last_name)&lt;/P&gt;&lt;P&gt;# this exports your file into your folder as a .csv&lt;BR /&gt;write.csv(ia_p_s, file='proxied.csv', row.names=FALSE)&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;&lt;SPAN style="font-family: &amp;quot;Arial&amp;quot;,sans-serif; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 12:45:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526340#M16290</guid>
      <dc:creator>asherer</dc:creator>
      <dc:date>2019-01-11T12:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526348#M16292</link>
      <description>&lt;P&gt;The preferred form is as I described earlier, "&lt;SPAN&gt;Click on the {i} icon and paste your R-code into that window."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please do that, this makes code much easier to read.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 13:15:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526348#M16292</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-11T13:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526350#M16293</link>
      <description>&lt;PRE&gt;require(dplyr)
#require(openxlsx)
source("bisg_proxy/new_func.R")


ia_s &amp;lt;-read.csv('Overrides for R.csv', colClasses = 'character')


#ia_s &amp;lt;- read.xlsx('Policy Exceptions for R.xlsx')

#add geo tract and geo block

ia_2&amp;lt;- ia_s %&amp;gt;%
  mutate(geo_tract=paste(state, county, censustrac, sep=''),
         geo_tract=gsub('[.]','',geo_tract))%&amp;gt;%
  mutate(geo_block=paste(state, county, censustrac, blockgrp, sep=''),
         geo_block=gsub('[.]','',geo_block))



# if blockgrp == 0, BISG at the tract level
#note duplicated primary as secondary for name/dob as no secondary in file

# if blockgrp == 0, BISG at the tract level

ia_t &amp;lt;- ia_2 %&amp;gt;%
  filter(blockgrp %in% c("0",NA)) %&amp;gt;%
  applyProxy(pri_first_name = 'pri_first_name', 
             pri_last_name = 'pri_last_name',
             sec_first_name = 'sec_first_name',
             geoid = 'geo_tract',
             geoid_key = 'GeoInd',
             threshold = .5,
             keepall = T,
             census_geog = tract_attr_over18)


# if blockgrp != 0, BISG at the block group level
ia_b &amp;lt;- ia_2 %&amp;gt;%
  filter(BlockGrop != '0') %&amp;gt;%
  applyProxy(pri_first_name = 'pri_first_name', 
             pri_last_name = 'pri_last_name',
             sec_first_name = 'sec_first_name',
             geoid = 'geo_block',
             geoid_key = 'geoind',
             threshold = .5,
             keepall = T,
             census_geog = blkgrp_attr_over18)

ia_p &amp;lt;- rbind(ia_t, ia_b) %&amp;gt;%
  arrange(race, gender)

#update header names if applicable 
ia_p_s &amp;lt;- ia_p %&amp;gt;%
  select(application_id, gender, race, pri_femaleprob:sec_maleprob, 
         Probability_Asian:Probability_White, pri_address, pri_city, pri_state, pri_zip, state, county, censustrac, blockgrp, msa, pri_first_name, pri_last_name)

# this exports your file into your folder as a .csv
write.csv(ia_p_s, file='Policy Exceptionsw no DOB proxied.csv', row.names=FALSE)&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Jan 2019 13:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526350#M16293</guid>
      <dc:creator>asherer</dc:creator>
      <dc:date>2019-01-11T13:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526541#M16305</link>
      <description>I'm familiar with all except applyProxy, do you have a reference for that command, not finding it online either. From the package name it appears to be a fuzzy match for names resulting in probability of gender/ethnicity? I don't think SAS will have a replacement for that. &lt;BR /&gt;&lt;BR /&gt;Either way, most appear to be select or computations, so you can easily use Base SAS to do all of this. &lt;BR /&gt;&lt;BR /&gt;Video.sas.com has most of what you need. &lt;BR /&gt;&lt;BR /&gt;PROC IMPORT will read CSV or Excel files. &lt;BR /&gt;&lt;BR /&gt;CATX() function replaces paste()&lt;BR /&gt;WHERE will filter and can be used in almost all procedures. &lt;BR /&gt;SAS has had IN for a long time so that's comparable.</description>
      <pubDate>Sat, 12 Jan 2019 00:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526541#M16305</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-12T00:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Converting R Code to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526545#M16306</link>
      <description>SAS DataFlux may be able to do some of this. And of course the accuracy depends highly on the data and where you're using it. Due to the racial demographics of where I live, it would be almost useless.</description>
      <pubDate>Sat, 12 Jan 2019 00:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Converting-R-Code-to-SAS/m-p/526545#M16306</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-12T00:53:33Z</dc:date>
    </item>
  </channel>
</rss>

