🎴 Flashcard Mode

SAS Programming Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

PROC SORT data = lib.temp out = temp2; By subjid; Run; In which library temp2 is made?

AnswerClick to flip back
A
work
💡 Explanation:

A one-level output dataset name like temp2 defaults to the temporary work library unless the user library is redefined, whereas a two-level name would specify a permanent library like lib.

Change Mode