Use SAS On Demand and turn in your program summary of the SAS script. You will need the following libname statement.
LIBNAME STAT408 "/courses/d716b355ba27fe300";
Access the titanic dataset, create and print a dataset with only the first class females.
Access the titanic dataset, create and print a dataset with only the first class females using Proc SQL code.
Compute the average age of passengers surviving the Titanic crash. This can be done using data steps and Proc Means or by using Proc SQL.