******************************************************************** * Program: C:\NHANES\Save.sas * * Proposal: Save final analysis dataset as a permanent SAS dataset * ********************************************************************; libname NH "C:\NHANES\DATA"; libname lib "C:\your_dir"; /*change the name of the directory folder to the location that you saved your downloaded dataset from the sample code and dataset downloads module: for example "c:\nhanes\datasets"*/ data NH.BP_analysis_Data; set lib.demo_BP4; run;