<?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 highlight codes in SAS Studio? in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479178#M5930</link>
    <description />
    <pubDate>Wed, 18 Jul 2018 18:07:03 GMT</pubDate>
    <dc:creator>gracetones</dc:creator>
    <dc:date>2018-07-18T18:07:03Z</dc:date>
    <item>
      <title>How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479178#M5930</link>
      <description />
      <pubDate>Wed, 18 Jul 2018 18:07:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479178#M5930</guid>
      <dc:creator>gracetones</dc:creator>
      <dc:date>2018-07-18T18:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479182#M5931</link>
      <description>&lt;P&gt;Can you provide some more context?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479182#M5931</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-18T18:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479184#M5932</link>
      <description>&lt;P&gt;I am hoping to highlight some lines on my codes like how you can highlight texts while reading an electronic document.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479184#M5932</guid>
      <dc:creator>gracetones</dc:creator>
      <dc:date>2018-07-18T18:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479186#M5933</link>
      <description>&lt;P&gt;If I understand correctly, I don’t think the IDE supports that type of functionality.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add comments which are blocked off though.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479186#M5933</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-18T18:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479187#M5934</link>
      <description>&lt;P&gt;I see. It would be interesting to know how you can add a comment on your code as well.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479187#M5934</guid>
      <dc:creator>gracetones</dc:creator>
      <dc:date>2018-07-18T18:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479211#M5935</link>
      <description>&lt;P&gt;Here's an example of two ways. Paste the code into SAS Studio to see it, should have different colours. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Method 1:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*this is a single line comment;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Method 2:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*This is  my multi line comments
with a lot of different components*/
&lt;/CODE&gt;&lt;/PRE&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;PRE&gt;&lt;CODE class=" language-sas"&gt;*Create summary statistics for a dataset by a 'grouping' variable and store it in a dataset;

*Generate sample fake data;
data have;
	input ID          feature1         feature2         feature3;
	cards;
1               7.72               5.43              4.35
1               5.54               2.25              8.22 
1               4.43               6.75              2.22
1               3.22               3.21              7.31
2               6.72               2.86              6.11
2               5.89               4.25              5.25 
2               3.43               7.30              8.21
2               1.22               3.55              6.55

;
run;

*Create summary data;
proc means data=have noprint;
	by id;
	var feature1-feature3;
	output out=want median= var= mean= /autoname;
run;

*Show for display;
proc print data=want;
run;

/*First done here:https://communities.sas.com/t5/General-SAS-Programming/Getting-creating-new-summary-variables-longitudinal-data/m-p/347940/
Another way to present data is as follows*/

proc means data=have stackods nway n min max mean median std p5 p95;
    by id;
    var feature1-feature3;
    ods output summary=want2;
run;

*Show for display;
proc print data=want2;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479211#M5935</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-18T18:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight codes in SAS Studio?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479219#M5936</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 19:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-highlight-codes-in-SAS-Studio/m-p/479219#M5936</guid>
      <dc:creator>gracetones</dc:creator>
      <dc:date>2018-07-18T19:12:09Z</dc:date>
    </item>
  </channel>
</rss>

