<?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 How to fetch details (parameters used etc) from sas7bdat model file in SAS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600025#M173331</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used proc contents on this file and it just gives the basic details. Is there any method to fetch the details such as parameters selected for the model etc from this file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bond.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Oct 2019 11:32:35 GMT</pubDate>
    <dc:creator>Bond007</dc:creator>
    <dc:date>2019-10-29T11:32:35Z</dc:date>
    <item>
      <title>How to fetch details (parameters used etc) from sas7bdat model file in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600025#M173331</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used proc contents on this file and it just gives the basic details. Is there any method to fetch the details such as parameters selected for the model etc from this file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bond.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 11:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600025#M173331</guid>
      <dc:creator>Bond007</dc:creator>
      <dc:date>2019-10-29T11:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch details (parameters used etc) from sas7bdat model file in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600094#M173370</link>
      <description>&lt;P&gt;What "file"?&lt;/P&gt;
&lt;P&gt;what model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Depending on what model procedure you run and options then the content of output sets may have information. But you likely have to have show use the model code used and tell us what you want to find.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The typical options that may output parameters would have a variable named parameter, or similar, and Proc Contents would not tell you the values only that a variable of that name existed.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 15:19:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600094#M173370</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-10-29T15:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch details (parameters used etc) from sas7bdat model file in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600100#M173375</link>
      <description>&lt;P&gt;All I have is a model file, I don't have a code used to train the model file. Is there any way where I can get the details from the model file itself.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 15:35:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600100#M173375</guid>
      <dc:creator>Bond007</dc:creator>
      <dc:date>2019-10-29T15:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch details (parameters used etc) from sas7bdat model file in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600216#M173429</link>
      <description>&lt;P&gt;Now, no.&amp;nbsp; If that information is not in your data, it is not retrievable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, if you have the original input data and could run the model again, the answer would change to yes.&amp;nbsp; You would need to examine the documentation to see whether the procedure supports the OUT= option, the OUTPUT statement, or some other option or statement to capture the information you want.&amp;nbsp; If not, you can still get the information by adding to&amp;nbsp; your program:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods trace on;&lt;/P&gt;
&lt;P&gt;** run the modeling procedure here;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods trace off;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That will reveal the pieces of output you could retrieve when you re-run the program, if you were to add ODS OUTPUT statements.&amp;nbsp; But you need to identify by name which pieces you would like to capture.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 23:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/600216#M173429</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-10-29T23:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch details (parameters used etc) from sas7bdat model file in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/601638#M174047</link>
      <description>&lt;P&gt;&amp;nbsp;I have a model file and I don't have access to the code used to create that model, can I use the model file to classify the new data?&lt;/P&gt;&lt;P&gt;How can I accomplish this in SAS?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 13:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-fetch-details-parameters-used-etc-from-sas7bdat-model/m-p/601638#M174047</guid>
      <dc:creator>Bond007</dc:creator>
      <dc:date>2019-11-05T13:31:40Z</dc:date>
    </item>
  </channel>
</rss>

