Dear all,
I am sorry to ask you so many basic questions. I did google search and review of multiple guides for quite some time but I could not find the answer.
Currently, I am trying to calculate CAR around event days. Using the following code, I logged into WRDS.
%let wrds = wrds.wharton.upenn.edu 4016;options comamid = TCP remote=WRDS;
signon username=_prompt_;
rsubmit;
Then, to access CRSP, I used the following code.
libname crsp '/wrds/crspq/sasdata/ix';
When this code is excuted, I receive the following error message.
212 libname crsp '/wrds/crspq/sasdata/ix';
NOTE: Library CRSP does not exist.
I am running SAS on windows.
Thank you very much for your help.
Then I suggest you log on to the server and make sure that /wrds/crspq/sasdata/ix actually exists. The NOTE message is typical for a path that does not exist.
To use a dataset present on the remote server, you need to use the remote engine:
libname crsp remote '/wrds/crspq/sasdata/ix' server=wrds;
Then I suggest you log on to the server and make sure that /wrds/crspq/sasdata/ix actually exists. The NOTE message is typical for a path that does not exist.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.