All Posts

Work & Life at SAS
Lisa Allred 0
Selfies and Parenting

  “Omg, Mom, people are going to think you actually look like that!”  My 16 y/o recently got a Facebook account (apparently passé for teens in US but not in Europe and as her circle expands…).  So, now she has a front row seat to my (apparently embarrassing) selfies.  It’s

Data Management | Learn SAS | Programming Tips
Leonid Batkhan 0
Modifying variable attributes in all datasets of a SAS library

Using the DATASETS procedure, we can easily modify SAS variable attributes such as name, format, informat and label: proc datasets library=libref; modify table_name; format var_name date9.; informat var_name mmddyy10.; label var_name = 'New label'; rename var_name = var_new_name; quit; We cannot, however, modify fixed variable attributes such as variable type

1 429 430 431 432 433 748