I have a dataset with over 1K variables. I would like to create a new data frame that transposes all variables into one column so I can better search through the variables. My intended result can be seen below. I do not need to have the observations included in the new DF.
Current Data
Var 1 | Var 2| Var 3| etc
The desired Outcome would be one variable column
Column
- Var 1
- Var 2
- Var 3