Yea they are SAS datasets I create with a different code, they all have the number of columns and rows but also different values.
Your last post gave me an idea whereby I manually create a new dataset with exact number values in "a":
var1 var2
1 2
3 4
with the same number of...
well that worked, primarily because it was sorted at the end.
The data in All before sorting:
1
3
2
4
Then it's sorted with proc sort
Thanks though, it may have put me in the right direction, maybe some transposing or something
Not exactly a "technical" question as much as a mathematical or formatting one.
I've read many publications where statistical results are provided in figures or tables. Seldom have I seen the use of p-values to explain statistical significance, instead standard errors or t-values are shown...
I have a program that creates many workfiles in this order:
1 2
3 4
...
9 10
How do I get them into this order:
1
2
.
.
.
9
10
I want to use a macro so I can update and merge multiple work files quickly.
It is the same as:
data a; input var1 @@;
datalines;
1 2
3 4
...
9 10
but without the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.