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.