|
reformulate the columns
For example, you have two data sets, each has two columns and one record.
In data A, x=345, y=342;
In data B, x=4.56 (23%), y=2.34 (56%);
You want a talbe printed out as
EXP of A 345 342
EXP of B 4.56 (23%) 2.34 (56%)
Since x and y in B are defintely character variables, if x and y in A are numeric, you have to convert them into character variables before you append A and B together. Besides, you have to add EXPlainations to each row. I refer these operations as reformaulte columns. |
|