<?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: Importing Data in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401740#M8274</link>
    <description>Yeah that's possible. But I'm still getting the same error, when I want to analyse my data</description>
    <pubDate>Fri, 06 Oct 2017 13:13:12 GMT</pubDate>
    <dc:creator>nhi996</dc:creator>
    <dc:date>2017-10-06T13:13:12Z</dc:date>
    <item>
      <title>Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401699#M8270</link>
      <description>&lt;P&gt;Hey!&lt;BR /&gt;&lt;BR /&gt;I started using visual analytics today and can't really get going.&amp;nbsp;I imported a data set called "multiple_sclerosis_data.csv"&lt;BR /&gt;which is now in the subfolder LASR, which is in Shared Data. I called the table "multiple_sclerosis" and wanted to test if the import was successful. So I tried a proc means command and got the following error:&lt;BR /&gt;&lt;BR /&gt;File WORK:MULTIPLE_SCLEROSIS.DATA does not exist.&lt;BR /&gt;&lt;BR /&gt;Did I do anything wrong or did I forget anything?&lt;BR /&gt;&lt;BR /&gt;Thanks for any help!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 11:20:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401699#M8270</guid>
      <dc:creator>nhi996</dc:creator>
      <dc:date>2017-10-06T11:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401707#M8271</link>
      <description>&lt;P&gt;What does your libname point to where that dataset is located.&amp;nbsp; You need to give the library and the dataset otherwise SAS will think to use WORK.&amp;nbsp; E.g.:&lt;/P&gt;
&lt;PRE&gt;libname myloc "...";

proc import... out=myloc.multiple_sclerosis...;

data want;
  set myloc.multiple_sclerosis;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Oct 2017 12:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401707#M8271</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-06T12:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401722#M8272</link>
      <description>&lt;P&gt;Hey thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;I normally use SAS 9.3 and for whatever reason I don't even know how to assign a library in Visual Analytics.&lt;BR /&gt;This is where my dataset is located:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lib.png" style="width: 290px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15661iC9207FE1829B6569/image-size/large?v=v2&amp;amp;px=999" role="button" title="lib.png" alt="lib.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really know which path I have to use, to set a library.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 12:45:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401722#M8272</guid>
      <dc:creator>nhi996</dc:creator>
      <dc:date>2017-10-06T12:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401738#M8273</link>
      <description>&lt;P&gt;If you have imported the table to the SAS LASR Analytic&amp;nbsp;Server, why not use one of the Visual&amp;nbsp; Analytics components to view the table? Visual Analytics Designer or Visual Analytics Explorer?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 13:10:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401738#M8273</guid>
      <dc:creator>Madelyn_SAS</dc:creator>
      <dc:date>2017-10-06T13:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401740#M8274</link>
      <description>Yeah that's possible. But I'm still getting the same error, when I want to analyse my data</description>
      <pubDate>Fri, 06 Oct 2017 13:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/401740#M8274</guid>
      <dc:creator>nhi996</dc:creator>
      <dc:date>2017-10-06T13:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/402119#M8285</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The default LIBREF for the public LASR library is LASRLIB. If this hasn't been changed since VA was installed it may work for you. You do need to be using the VA Application Server, via SAS Studio or Enterprise Guide for it to work, and the LASR server needs to be running with your dataset loaded into memory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set lasrlib.multiple_sclerosis;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Oct 2017 21:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-Data/m-p/402119#M8285</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-10-07T21:36:39Z</dc:date>
    </item>
  </channel>
</rss>

