Hey!
I started using visual analytics today and can't really get going. I imported a data set called "multiple_sclerosis_data.csv"
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:
File WORK:MULTIPLE_SCLEROSIS.DATA does not exist.
Did I do anything wrong or did I forget anything?
Thanks for any help!
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.
data want;
set lasrlib.multiple_sclerosis;
run;
What does your libname point to where that dataset is located. You need to give the library and the dataset otherwise SAS will think to use WORK. E.g.:
libname myloc "..."; proc import... out=myloc.multiple_sclerosis...; data want; set myloc.multiple_sclerosis; run;
Hey thanks for the reply.
I normally use SAS 9.3 and for whatever reason I don't even know how to assign a library in Visual Analytics.
This is where my dataset is located:
I don't really know which path I have to use, to set a library.
If you have imported the table to the SAS LASR Analytic Server, why not use one of the Visual Analytics components to view the table? Visual Analytics Designer or Visual Analytics Explorer?
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center
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.
data want;
set lasrlib.multiple_sclerosis;
run;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.