Hello, I have some data in held in an array which I've managed to extract and it looks like this:-
I've had a request to hold the data out like this, i.e. stack all my f(i) and unitt(i) into two columns.
Anyone know how to do this?
Thanks
SP
Code:
Obs inrref covref f1 f2 f3 unitt1 unitt2 unitt3
1 1 1 628 . . 725 0 0
2 2 1 . 629 . 0 565 0
3 3 1 . . 312 0 0 18
I've had a request to hold the data out like this, i.e. stack all my f(i) and unitt(i) into two columns.
Code:
inrref covref f's unitts
1 1 628 725
2 1 629 565
3 1 312 18
Thanks
SP