SAS Transpose without using PROC Transpose

2013-12-08T08:05:31

I have a question about transposing data without using PROC Transpose.

0   a      b     c
1  dog    cat   camel
2  9      7     2534 

Without using PROC TRANSPOSE, how can I get a resulting dataset of:

   Animals       Weight     
1  dog           9
2  cat           7
3  camel         2534

Copyright License:
Author:「user3078807」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/20448296/sas-transpose-without-using-proc-transpose

About “SAS Transpose without using PROC Transpose” questions

I have a question about transposing data without using PROC Transpose. 0 a b c 1 dog cat camel 2 9 7 2534 Without using PROC TRANSPOSE, how can I get a resulting datas...
I have SAS data like this. dog cat mice camel pigeon cow goat fish horse donkey monkey lion rat DOG CAT MICE CAMEL PIGEON COW GOAT FISH HORSE DONKEY MONKEY LION RAT Non-capital name is column nam...
I have a SAS dataset that I want to transpose with both character and numerical variables. Only interval and group are character variables, the rest are numerical variables. However, proc transpose
In SAS, I have a data set similar to the one below. ID TRACT meanFA sdFA medianFA 1 t01 0.56 0.14 0.56 1 t02 0.53 0.07 0.52 1 t03 0.71 ...
In SAS, I have a data set similar to the one below. ID TRACT meanFA sdFA medianFA 1 t01 0.56 0.14 0.56 1 t02 0.53 0.07 0.52 1 t03 0.71 ...
In SAS, I have a data set similar to the one below. ID TRACT meanFA sdFA medianFA 1 t01 0.56 0.14 0.56 1 t02 0.53 0.07 0.52 1 t03 0.71 ...
Another SAS question from me (I noticed these don't come up here that often...): I have a data set containing something like this: Name | Category | Level | Score John | cat1 | ...
I have the following table in R. I want to transpose it. I am new to R and have been using SAS. So I want to have a replica of proc transpose is SAS. I am giving the output also in which format I...
I am trying to convert a SAS proc transpose statement to pyspark in databricks. With the following data as a sample: data = [{"duns":1234, "finc stress":100,"ver":6.0},{&
I am working on converting SAS code to Snowflake and I got a scenario to implement "PROC TRANSPOSE" functionality in Snowflake. Below is the same table data I have in snowflake and I need...

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.