<?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: Invalid data for all variables in Log in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938101#M2012</link>
    <description>&lt;P&gt;Your data is tab delimited.&amp;nbsp; Use INFILE DSD DLM='09'x option or INFILE EXPANDTABS option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data paraquat;
   infile cards dsd dlm='09'x;
    input var rep timing $ yield protein seed;							
	datalines;							
4	1	UTC	39.96198851	32.66	0.48
4	2	UTC	51.50817011	32.69	0.544
4	3	UTC	45.8398069	35.39	0.544
4	4	UTC	52.43472414	35.58	0.512
4	1	Early	23.28206897	30.31	0.352
4	2	Early	27.32986667	32.07	0.352
4	3	Early	26.73015172	32.55	0.352
4	4	Early	28.67690728	32.63	0.352
4	1	Mid	44.34293027	29.24	0.512
4	2	Mid	49.59247586	32.19	0.608
4	3	Mid	41.65812107	33.25	0.512
4	4	Mid	44.06625287	33.87	0.544
4	1	Late	61.39159847	33.16	0.48
4	2	Late	43.30928429	34.13	0.576
4	3	Late	40.82845977	34.4	0.576
4	4	Late	55.74122299	35.82	0.576
6	1	UTC	34.18555977	39.23	0.416
6	2	UTC	38.13813372	41.69	0.448
6	3	UTC	34.86190805	40.32	0.432
6	4	UTC	27.99318774	39.56	0.368
6	1	Early	26.01620536	35.01	0.336
6	2	Early	22.62992069	36.31	0.32
6	3	Early	25.7200567	35.59	0.288
6	4	Early	15.47464828	35.35	0.304
6	1	Mid	40.9208092	35.86	0.384
6	2	Mid	42.15584368	37.29	0.384
6	3	Mid	37.75645057	38.6	0.416
6	4	Mid	35.38670498	36.1	0.352
6	1	Late	27.59078161	40.01	0.4
6	2	Late	40.45804215	39.92	0.448
6	3	Late	38.01152414	41.09	0.4
6	4	Late	34.59807241	37.1	0.416
;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Aug 2024 19:59:29 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2024-08-02T19:59:29Z</dc:date>
    <item>
      <title>Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/937170#M1994</link>
      <description>&lt;P&gt;Please review my code to see what I need to adjust in SAS Studio to make this recognize the variables in the code:&lt;/P&gt;&lt;PRE&gt;data paraquat;&lt;BR /&gt;	input var rep $ timing yield protein seed;							&lt;BR /&gt;	datalines;							&lt;BR /&gt;4	1	UTC	39.96198851	32.66	0.48&lt;BR /&gt;4	2	UTC	51.50817011	32.69	0.544&lt;BR /&gt;4	3	UTC	45.8398069	35.39	0.544&lt;BR /&gt;4	4	UTC	52.43472414	35.58	0.512&lt;BR /&gt;4	1	Early	23.28206897	30.31	0.352&lt;BR /&gt;4	2	Early	27.32986667	32.07	0.352&lt;BR /&gt;4	3	Early	26.73015172	32.55	0.352&lt;BR /&gt;4	4	Early	28.67690728	32.63	0.352&lt;BR /&gt;4	1	Mid	44.34293027	29.24	0.512&lt;BR /&gt;4	2	Mid	49.59247586	32.19	0.608&lt;BR /&gt;4	3	Mid	41.65812107	33.25	0.512&lt;BR /&gt;4	4	Mid	44.06625287	33.87	0.544&lt;BR /&gt;4	1	Late	61.39159847	33.16	0.48&lt;BR /&gt;4	2	Late	43.30928429	34.13	0.576&lt;BR /&gt;4	3	Late	40.82845977	34.4	0.576&lt;BR /&gt;4	4	Late	55.74122299	35.82	0.576&lt;BR /&gt;6	1	UTC	34.18555977	39.23	0.416&lt;BR /&gt;6	2	UTC	38.13813372	41.69	0.448&lt;BR /&gt;6	3	UTC	34.86190805	40.32	0.432&lt;BR /&gt;6	4	UTC	27.99318774	39.56	0.368&lt;BR /&gt;6	1	Early	26.01620536	35.01	0.336&lt;BR /&gt;6	2	Early	22.62992069	36.31	0.32&lt;BR /&gt;6	3	Early	25.7200567	35.59	0.288&lt;BR /&gt;6	4	Early	15.47464828	35.35	0.304&lt;BR /&gt;6	1	Mid	40.9208092	35.86	0.384&lt;BR /&gt;6	2	Mid	42.15584368	37.29	0.384&lt;BR /&gt;6	3	Mid	37.75645057	38.6	0.416&lt;BR /&gt;6	4	Mid	35.38670498	36.1	0.352&lt;BR /&gt;6	1	Late	27.59078161	40.01	0.4&lt;BR /&gt;6	2	Late	40.45804215	39.92	0.448&lt;BR /&gt;6	3	Late	38.01152414	41.09	0.4&lt;BR /&gt;6	4	Late	34.59807241	37.1	0.416&lt;BR /&gt;&lt;BR /&gt;;&lt;BR /&gt;run;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Thank you!!!!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 20:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/937170#M1994</guid>
      <dc:creator>mmaw</dc:creator>
      <dc:date>2024-07-25T20:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/937171#M1995</link>
      <description>&lt;P&gt;Your question talks about a log but no log is shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a minimum you need something that will read the values of Timing. You do not indicate it is character so you are going to get invalid data for that variable.&lt;/P&gt;
&lt;P&gt;A $ &lt;STRONG&gt;after&lt;/STRONG&gt; the name of a variable on an input statement says to read the value as character with a maximum of 8 characters.&lt;/P&gt;
&lt;PRE&gt;data paraquat;
	input var rep $ timing $ yield protein seed;							
	datalines;							
4	1	UTC	39.96198851	32.66	0.48
4	2	UTC	51.50817011	32.69	0.544
4	3	UTC	45.8398069	35.39	0.544
4	4	UTC	52.43472414	35.58	0.512
;&lt;/PRE&gt;
&lt;P&gt;If there is something else of concern you need to state what the issue is.&lt;/P&gt;
&lt;P&gt;If you did not what REP to be character then remove the $ after Rep on the input statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 21:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/937171#M1995</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-07-25T21:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938087#M2010</link>
      <description>Thank you for your quick response to my inquiry! Transitioning to SAS Studio is a bit trickier/different on the coding I am finding.</description>
      <pubDate>Fri, 02 Aug 2024 15:41:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938087#M2010</guid>
      <dc:creator>mmaw</dc:creator>
      <dc:date>2024-08-02T15:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938098#M2011</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/395412"&gt;@mmaw&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thank you for your quick response to my inquiry! Transitioning to SAS Studio is a bit trickier/different on the coding I am finding.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The SAS system is the same, so the code works the same, no matter if you use Display Manager, Enterprise Guide or SAS Studio. The code to read from DATALINES in particular will be absolutely the same.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 18:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938098#M2011</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-08-02T18:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938101#M2012</link>
      <description>&lt;P&gt;Your data is tab delimited.&amp;nbsp; Use INFILE DSD DLM='09'x option or INFILE EXPANDTABS option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data paraquat;
   infile cards dsd dlm='09'x;
    input var rep timing $ yield protein seed;							
	datalines;							
4	1	UTC	39.96198851	32.66	0.48
4	2	UTC	51.50817011	32.69	0.544
4	3	UTC	45.8398069	35.39	0.544
4	4	UTC	52.43472414	35.58	0.512
4	1	Early	23.28206897	30.31	0.352
4	2	Early	27.32986667	32.07	0.352
4	3	Early	26.73015172	32.55	0.352
4	4	Early	28.67690728	32.63	0.352
4	1	Mid	44.34293027	29.24	0.512
4	2	Mid	49.59247586	32.19	0.608
4	3	Mid	41.65812107	33.25	0.512
4	4	Mid	44.06625287	33.87	0.544
4	1	Late	61.39159847	33.16	0.48
4	2	Late	43.30928429	34.13	0.576
4	3	Late	40.82845977	34.4	0.576
4	4	Late	55.74122299	35.82	0.576
6	1	UTC	34.18555977	39.23	0.416
6	2	UTC	38.13813372	41.69	0.448
6	3	UTC	34.86190805	40.32	0.432
6	4	UTC	27.99318774	39.56	0.368
6	1	Early	26.01620536	35.01	0.336
6	2	Early	22.62992069	36.31	0.32
6	3	Early	25.7200567	35.59	0.288
6	4	Early	15.47464828	35.35	0.304
6	1	Mid	40.9208092	35.86	0.384
6	2	Mid	42.15584368	37.29	0.384
6	3	Mid	37.75645057	38.6	0.416
6	4	Mid	35.38670498	36.1	0.352
6	1	Late	27.59078161	40.01	0.4
6	2	Late	40.45804215	39.92	0.448
6	3	Late	38.01152414	41.09	0.4
6	4	Late	34.59807241	37.1	0.416
;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 19:59:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938101#M2012</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2024-08-02T19:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid data for all variables in Log</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938138#M2013</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/395412"&gt;@mmaw&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thank you for your quick response to my inquiry! Transitioning to SAS Studio is a bit trickier/different on the coding I am finding.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Where you using EG or DM before?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 21:41:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Invalid-data-for-all-variables-in-Log/m-p/938138#M2013</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2024-08-02T21:41:31Z</dc:date>
    </item>
  </channel>
</rss>

