Multiple choice technology programming languages

Dataset Temp contains 1 observation and 30 variables. Which procedure can be used to convert it into 30 observations with 1 variable in an efficient manner?

  1. Proc tabulate

  2. Proc report

  3. Proc transpose

  4. Proc Invert

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PROC TRANSPOSE is designed specifically to transpose data - converting variables to observations (or vice versa). It converts 1 observation with 30 variables into 30 observations with 1 variable efficiently. TABULATE and REPORT are for summarization/display, not transposition.