<?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: Changing datatype of dataset from unspecified type to specially strutured sas dataset (EST type) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933223#M367045</link>
    <description>&lt;P&gt;thanks! I also realized i could call the type in the mi analyze procedure a la&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc mianalyze data=cov1(type=EST);
modeleffects intercept x1 x2 x3;
run;&lt;/PRE&gt;</description>
    <pubDate>Thu, 20 Jun 2024 20:34:18 GMT</pubDate>
    <dc:creator>zfusfeld</dc:creator>
    <dc:date>2024-06-20T20:34:18Z</dc:date>
    <item>
      <title>Changing datatype of dataset from unspecified type to specially strutured sas dataset (EST type)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933207#M367042</link>
      <description>&lt;P&gt;I think the question is pretty self explanatory.&lt;/P&gt;&lt;P&gt;I have a dataset that I need to convert to a specially structured dataset for an analytic procedure I am doing (proc mianalyze). It is currently of an unspecified type, and I need to convert it to an EST type structure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought it would be a simple datastep, e.g.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data cov1 type=EST;
set cov1;
run;&lt;/PRE&gt;&lt;P&gt;but this spits out a syntax error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone link to a resource on how to manipulate the dataset to be of the EST data structure?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 19:17:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933207#M367042</guid>
      <dc:creator>zfusfeld</dc:creator>
      <dc:date>2024-06-20T19:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Changing datatype of dataset from unspecified type to specially strutured sas dataset (EST type)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933209#M367043</link>
      <description>&lt;P&gt;You did not include the ( ) needed when you have dataset options.&lt;/P&gt;
&lt;P&gt;Try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cov1 (type=EST);
  set cov1;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 19:44:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933209#M367043</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-06-20T19:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Changing datatype of dataset from unspecified type to specially strutured sas dataset (EST type)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933219#M367044</link>
      <description>&lt;P&gt;A minor efficiency note.&amp;nbsp; You don't have to copy a data set to change its type to EST.&amp;nbsp; Instead you can modify the metadata for COV1 using PROC DATASETS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc datasets lib=work nodetails nolist;
  modify cov1 (type=EST);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 20:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933219#M367044</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2024-06-20T20:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Changing datatype of dataset from unspecified type to specially strutured sas dataset (EST type)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933223#M367045</link>
      <description>&lt;P&gt;thanks! I also realized i could call the type in the mi analyze procedure a la&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc mianalyze data=cov1(type=EST);
modeleffects intercept x1 x2 x3;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jun 2024 20:34:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-datatype-of-dataset-from-unspecified-type-to-specially/m-p/933223#M367045</guid>
      <dc:creator>zfusfeld</dc:creator>
      <dc:date>2024-06-20T20:34:18Z</dc:date>
    </item>
  </channel>
</rss>

