I cannot open a dataset using SAS Studio.
I am following this online resource (https://stats.idre.ucla.edu/sas/dae/probit-regression/). After downloading the data " binary.sas7bdat" and uploading the data inside SAS studio's personal folder, I have run:
proc means data="\folders\myfolders\binary";
var gre gpa;
run;
as explained in the UCLA file, but I obtain an error. How can I obtain summary statistics? Is my way of inputting the data incorrect?