SAS 9.3 Table Properties (Description) -


i've been looking way value/change table's description through program/code instead of ui. table description on general tab of table properties. i've found shows how through ui nothing through code. possible?

that's dataset label. can added few ways, anywhere write dataset, or proc datasets.

proc datasets lib=work;   modify want(label="want label"); quit; 

or

data class(label="class dataset");   set sashelp.class; run; 

Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

javascript - Linking from page A to a specific iframe on page B -

java - Two interface have same method name with different return type -