<?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: Why is my rtf MSWord output file blank? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104686#M9840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh I see what you're saying. Sorry, I'm a slow study when it comes to stats. :smileyconfused: There are comments about what commands would go between graphics on/off, but I'm just not sure what they are. We are trying to assess normality based on the plot and histogram output, as well as the statistics. Here is the full code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* STA 216 hw4 - This is a "seed" program to get you started.&amp;nbsp; You will&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; add code below to complete the program. */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Run the below statement to gain access to permanent SAS data sets &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; on the R drive, in the Anderson 216 folder. Note that it creates a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; library name called HW4.&amp;nbsp; */ &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;libname hw4 'C:\Users\Dan\Desktop\216';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;/* After submitting the above statement, we can make use of any &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; permanent SAS data sets that are stored there, including GSS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; The below code produces infromation about the data set.&amp;nbsp; Note that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; we refer to hw4.gss.&amp;nbsp; HW4 is the library name, and GSS is the data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set name. */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=hw4.gss;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title 'Information about the 2010 GSS sample of data';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc format;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; value grp 1='Normal' 2='Right' 3='Left'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4='Flat' 5='Peaked' 6='Uniform';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;/* The following data step reads in 100 observations randomly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; generated from a normal, right-skewed, left-skewed, flat, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; highly peaked, and uniform distribution. */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data hw4.gss;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; infile 'C:\Users\Dan\Desktop\216\hw4.gss';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; input hw4.gss group;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; IDno = _N_;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; label hw4.gss='Data Distribution' group='Distribution Type';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; format group grp.;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc means data=hw4.gss n mean median stddev skew kurt maxdec=1 fw=5;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram sibs / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot sibs / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram age / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot age / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram sei / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot sei / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram yearsjob / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot yearsjob / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Don't run the below ODS statements right away.&amp;nbsp; Wait until you have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; written the code needed to produce the output correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Once you have it figured out, you will use the below code to "start &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; recording" an RTF document that can be edited in Word.&amp;nbsp; */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf style= journal2 file="C:\Users\Dan\Desktop\216\hw4output.rtf" startpage=no bodytitle;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics on;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Put your code here to create the output needed for this assignment */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* After you have created the desired output, you "stop recording" by&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; submitting the below statements. */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics off;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 10 Feb 2013 22:00:30 GMT</pubDate>
    <dc:creator>Daneul</dc:creator>
    <dc:date>2013-02-10T22:00:30Z</dc:date>
    <item>
      <title>Why is my rtf MSWord output file blank?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104682#M9836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In my stats class we were required to run all of our code up until "ods graphics on;" and then once the rtf was created, we were instructed to run the last two lines of code. When I open my Word rtf file, it's blank, but apparently I am supposed to be able to edit my graphs and tables. Any idea why this would be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf style= journal2 file="C:\Users\Dan\Desktop\216\hw4output.rtf" startpage=no bodytitle;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics on;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;ods graphics off;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 19:42:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104682#M9836</guid>
      <dc:creator>Daneul</dc:creator>
      <dc:date>2013-02-10T19:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my rtf MSWord output file blank?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104683#M9837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the following work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;ods rtf style= journal2 file="C:\Users\Dan\Desktop\216\hw4output.rtf" startpage=no bodytitle;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;ods graphics on;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc reg data=sashelp.class;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;model weight=age height;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run; quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;ods graphics off;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;ods rtf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 20:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104683#M9837</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-02-10T20:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my rtf MSWord output file blank?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104684#M9838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sort of. I have output now, but it gave me some weird data and graphs. If my variables are sibs, age, sei, and yearsjob, how would the code change? I guess I should have specified my variables first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 21:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104684#M9838</guid>
      <dc:creator>Daneul</dc:creator>
      <dc:date>2013-02-10T21:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my rtf MSWord output file blank?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104685#M9839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Reeza's suggestion was exactly the correct solution that illustrates how ODS works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;The "wrapper" code that your instructor gave you:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods rtf style= journal2 file="C:\Users\Dan\Desktop\216\hw4output.rtf" startpage=no bodytitle;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods graphics on;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff; font-family: courier new,courier;"&gt;&lt;STRONG&gt;.... your code goes here ....&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods graphics off;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods rtf close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;is meant to be "sandwiched" around your code or your procedure -- whatever procedure or SAS process you are studying about in class. So, the wrapper code, submitted by itself, without any SAS code in the middle, would essentially create an "empty" or blank file.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;BR /&gt;Reeza gave you a working example with some SAS code that used SASHELP.CLASS. You would need to go back to your class instructions and find out what data and what procedure you would use in place of the procedure that Reeza gave you to test. The "weird" data and graphs were from PROC REG. With ODS GRAPHICS turned ON, you get the default regression graphs (fit plot, etc) that PROC REG draws, in addition to the tables that it builds. I expect that your professsor showed some other "weird" data and graphs in your class -- depending on what your whole task was -- I assume it was more than submitting empty wrapper code. I would also expect that your professor had some SAS procedures that you were supposed to run, perhaps on data that the professor prepared for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Since you are in a stats class, your instructor might not have planned to start with PROC REG. But, even if you tell us that your variables are SIBS, AGE, SEI, and YEARSJOB, it is hard for anyone to help you. Were you supposed to run an analysis of variance? Were you supposed to run Basic Measures of Location and Variability? Or, were you supposed to get Frequency counts or find the extreme observations?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without knowing more about WHAT procedure you were supposed to put in your ODS "sandwich", there's no good way to help you. If you turn ODS GRAPHICS OFF before your initial ODS RTF statement, then your output will only contain the result tables/report. I assume your professor had you turn ODS GRAPHICS ON because you were meant to see/use the automatics graphs that ODS can create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 21:49:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104685#M9839</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-02-10T21:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my rtf MSWord output file blank?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104686#M9840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh I see what you're saying. Sorry, I'm a slow study when it comes to stats. :smileyconfused: There are comments about what commands would go between graphics on/off, but I'm just not sure what they are. We are trying to assess normality based on the plot and histogram output, as well as the statistics. Here is the full code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* STA 216 hw4 - This is a "seed" program to get you started.&amp;nbsp; You will&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; add code below to complete the program. */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Run the below statement to gain access to permanent SAS data sets &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; on the R drive, in the Anderson 216 folder. Note that it creates a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; library name called HW4.&amp;nbsp; */ &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;libname hw4 'C:\Users\Dan\Desktop\216';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;/* After submitting the above statement, we can make use of any &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; permanent SAS data sets that are stored there, including GSS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; The below code produces infromation about the data set.&amp;nbsp; Note that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; we refer to hw4.gss.&amp;nbsp; HW4 is the library name, and GSS is the data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set name. */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=hw4.gss;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title 'Information about the 2010 GSS sample of data';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc format;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; value grp 1='Normal' 2='Right' 3='Left'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4='Flat' 5='Peaked' 6='Uniform';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;/* The following data step reads in 100 observations randomly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; generated from a normal, right-skewed, left-skewed, flat, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; highly peaked, and uniform distribution. */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data hw4.gss;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; infile 'C:\Users\Dan\Desktop\216\hw4.gss';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; input hw4.gss group;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; IDno = _N_;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; label hw4.gss='Data Distribution' group='Distribution Type';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; format group grp.;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc means data=hw4.gss n mean median stddev skew kurt maxdec=1 fw=5;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram sibs / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot sibs / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram age / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot age / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram sei / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot sei / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc univariate data=hw4.gss noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; histogram yearsjob / normal;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; probplot yearsjob / normal (mu=8.402542 sigma=9.73912);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; title2 'This should look normal!';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Don't run the below ODS statements right away.&amp;nbsp; Wait until you have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; written the code needed to produce the output correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Once you have it figured out, you will use the below code to "start &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; recording" an RTF document that can be edited in Word.&amp;nbsp; */&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf style= journal2 file="C:\Users\Dan\Desktop\216\hw4output.rtf" startpage=no bodytitle;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics on;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Put your code here to create the output needed for this assignment */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* After you have created the desired output, you "stop recording" by&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; submitting the below statements. */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics off;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods rtf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 22:00:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-my-rtf-MSWord-output-file-blank/m-p/104686#M9840</guid>
      <dc:creator>Daneul</dc:creator>
      <dc:date>2013-02-10T22:00:30Z</dc:date>
    </item>
  </channel>
</rss>

