I need the rugby and insighttoy_sales data sets in SAS Visual Analytics, and can't find them, do I need to load these in the CAS? if so, how?
SAS Visual Analytics comes with some sample reports but the insight_toys and rugby takes are not used by those reports. Were you told by someone that these tables would be available? Are you using a trial version?
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center
Hello @Kboukaabar
Could you please provide a little bit more information so people get a clear picture of your need and are better able to help you?
Best regards,
Petri
SAS Visual Analytics comes with some sample reports but the insight_toys and rugby takes are not used by those reports. Were you told by someone that these tables would be available? Are you using a trial version?
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center
I'm not sure if Insight_toys and Rugby are part of SAS standard set of data sets included, but it is true that SAS installations include some data sets out of the box. The files are spread into two libraries - SAS9 and CAS library:
Here's a little code snippet which you can utilize should you want to upload some data from SASHELP to CAS:
/* Start a session */
cas casauto;
caslib _all_ assign;
proc casutil;
/* Reads data from SASHELP library and loads it into memory on SAS CAS */
load data=sashelp.cars casout="my_cars" outcaslib="CASUSER" replace ;
/* Removes a table from memory on SAS CAS. A table might exist if you have submitted this code before. PROMOTE can't replace tables */
droptable casdata="my_cars" incaslib="PUBLIC" quiet;
/* Copies a session-scope table to global scope so it's available outside this session */
promote casdata="my_cars" incaslib="CASUSER" casout="my_cars" outcaslib="PUBLIC" keep;
run;
/* Terminate session Casauto */
/* cas casauto terminate; */
Brgds,
Petri
I followed your suggestion below
"Samples library
Can be loaded to in-memory with right mouse button.
Open Manage Data > Data Sources > Samples
or
Open VA > Add/Change Data > Data Sources > Samples, "
and it says "no Item available.
A version of the Insight Toy data set is available here:
http://support.sas.com/documentation/onlinedoc/va/8.1/insightToyDemo.zip
I am not familiar with the rugby data set.
It has been solved. Thanks.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.