<?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: PROC GLM Error Message in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452444#M69820</link>
    <description>&lt;P&gt;Please provide a sample of your file R6_01.csv, so we can test your code with your data.&lt;/P&gt;
&lt;P&gt;As posted, I cannot see any problem.&lt;/P&gt;
&lt;P&gt;And also post all log text, from the first data step that imports the csv down to the error. See&amp;nbsp;&lt;A href="https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting" target="_blank"&gt;https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting&lt;/A&gt; for posting code &amp;amp; log text.&lt;/P&gt;</description>
    <pubDate>Mon, 09 Apr 2018 08:46:12 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-04-09T08:46:12Z</dc:date>
    <item>
      <title>PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452438#M69819</link>
      <description>&lt;P&gt;Hey everybody,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm writing my first post to ask for your help. Indeed, I have no problem using "proc" in all my exercises but with "PROC GLM", it never works. I tried with different files. It is always written: "&lt;SPAN&gt;ERROR: Invalid characters were present in the data.". I don't understand&amp;nbsp;because&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;I'm a student and it's a file used by many other students and they don't have any problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I send you a screenshot and my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day,&lt;/P&gt;&lt;P&gt;Simon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;SAS version :&lt;/TD&gt;&lt;TD&gt;9.04.01M5P09132017&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My SAS code :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA entree ; 
INFILE '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv' FIRSTOBS=2 DLM=";" DSD ; 
INPUT QI Age Score ; 
PROC PRINT DATA=entree ; 
RUN ; 
ODS GRAPHICS OFF ; 
PROC GLM DATA=entree ; 
MODEL Score = Age QI ; 
RUN ;
PROC REG DATA=entree ; 
MODEL Score = Age QI ; 
RUN ;
PROC GLM DATA=entree ; 
MODEL Score = QI Age ; 
RUN ;
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2018-04-09 à 10.05.33.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19695iEBE689EB60FE6EEC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2018-04-09 à 10.05.33.png" alt="Capture d’écran 2018-04-09 à 10.05.33.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 08:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452438#M69819</guid>
      <dc:creator>juill</dc:creator>
      <dc:date>2018-04-09T08:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452444#M69820</link>
      <description>&lt;P&gt;Please provide a sample of your file R6_01.csv, so we can test your code with your data.&lt;/P&gt;
&lt;P&gt;As posted, I cannot see any problem.&lt;/P&gt;
&lt;P&gt;And also post all log text, from the first data step that imports the csv down to the error. See&amp;nbsp;&lt;A href="https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting" target="_blank"&gt;https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting&lt;/A&gt; for posting code &amp;amp; log text.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 08:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452444#M69820</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-09T08:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452449#M69821</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the information you need :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 NOTE: les instructions ODS dans l'environnement SAS Studio risquent de désactiver certaines fonctionnalités de sortie.
 73         
 74         DATA entree ;
 75         INFILE '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv' FIRSTOBS=2 DLM=";" DSD ;
 76         INPUT QI Age Score ;
 
 NOTE: The infile '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv' is:
       Nom du fichier=/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv,
       Nom du propriétaire=sasdemo,Nom du groupe=sas,
       Autorisation d'accès=-rw-rw-r--,
       Modifié(e) le=29 mars 2018 16 h 18,
       Taille de fichier (octets)=410
 
 NOTE: 29 records were read from the infile '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv'.
       The minimum record length was 11.
       The maximum record length was 12.
 NOTE: The data set WORK.ENTREE has 29 observations and 3 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 77         PROC PRINT DATA=entree ;
 78         RUN ;
 
 NOTE: There were 29 observations read from the data set WORK.ENTREE.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.06 seconds
       cpu time            0.07 seconds
       
 
 79         ODS GRAPHICS OFF ;
 80         PROC GLM DATA=entree ;
 81         MODEL Score = Age QI ;
 82         RUN ;
 
 ERROR: Invalid characters were present in the data.
 ERROR: Une erreur s'est produite lors du traitement des données texte.
 ERROR: Invalid characters were present in the data.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE GLM used (Total process time):
       real time           0.05 seconds
       cpu time            0.05 seconds
       
 83         
 
 
 84         PROC REG DATA=entree ;
 85         MODEL Score = Age QI ;
 86         RUN ;
 
 87         
 
 NOTE: PROCEDURE REG used (Total process time):
       real time           0.08 seconds
       cpu time            0.08 seconds
       
 
 88         PROC GLM DATA=entree ;
 89         MODEL Score = QI Age ;
 90         RUN ;
 
 ERROR: Invalid characters were present in the data.
 ERROR: Une erreur s'est produite lors du traitement des données texte.
 ERROR: Invalid characters were present in the data.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE GLM used (Total process time):
       real time           0.05 seconds
       cpu time            0.04 seconds
       
 91         
 92         
 93         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 106        &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Apr 2018 09:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452449#M69821</guid>
      <dc:creator>juill</dc:creator>
      <dc:date>2018-04-09T09:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452459#M69825</link>
      <description>&lt;P&gt;It's not the data, and it's not your code (I ran your code successfully against your data on SAS 9.4M5 on AIX from EG 7.15), but it might be a language problem between your SAS UE, your environment and your browser:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Analytics-U/PROC-ANOVA-ERROR-invalid-characters-were-present-in-the-data/td-p/339382" target="_blank"&gt;https://communities.sas.com/t5/SAS-Analytics-U/PROC-ANOVA-ERROR-invalid-characters-were-present-in-the-data/td-p/339382&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This was the first hit of a search for&lt;/P&gt;
&lt;P&gt;"sas ERROR: Invalid characters were present in the data."&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 10:32:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452459#M69825</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-09T10:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452724#M69841</link>
      <description>&lt;P&gt;I changed my browser langage into English and it works great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You made my day ! Thank you KurtBremser&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2018 07:32:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452724#M69841</guid>
      <dc:creator>juill</dc:creator>
      <dc:date>2018-04-10T07:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLM Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452727#M69842</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/195514"&gt;@juill&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I changed my browser langage into English and it works great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You made my day ! Thank you KurtBremser&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Mind that I did not &lt;EM&gt;know&lt;/EM&gt; the solution, I just used Google. See my Maxim #6.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2018 07:49:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GLM-Error-Message/m-p/452727#M69842</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-10T07:49:54Z</dc:date>
    </item>
  </channel>
</rss>

