@Abastaki
First - Check the setting on your SAS University Edition Virtual machine
Second - Within SAS Studio, Check the properties of your "My Folder"
Third - Ensure using correct paths in your libname statements, based on the information gathered from the above two pics
i.e.
Physically on my Personal desktop, I have placed all my SAS related files under
This PC\Documents\SASUniversityEdition\myfolders\.......
In SAS Studio that would translate to
/folders/myfolders/......
Therefore, as long as you have physically placed all your SAS related contents under C:\.....\myfolders\, you can reference it in SAS Studio as /folders/myfolders/<DirectoryName>/<file name>
Your pg1 library has to be defined as
LIBNAME pg1 "/folders/myfolders/EPG1V2/data";
I think, you'll need to open and modify This PC\Documents\SASUniversityEdition\myfolders\EPG1V2\createdata.sas
and make sure to use the same path as in the above libname statement, in order to create the sample data sets there.
Hope this clarify it for you.
Ahmed
... View more