On Mon, 2008-07-14 at 14:40 -0700, Willa Wei wrote:
> Now, I want to have a
> data frame looks like shown below so that I can save it into my
> database:
>
> Level mean medianvar sdvalid.n
> 2 6.11 1.29 2885 53.72 8.3
Is this what you want:
> x <- data.frame(a=1:10,b=1:10)
> x
a b
1 1 1
2 2 2
3 3 3
4 4 4
5 5 5
6 6 6
7 7 7
8 8 8
9 9 9
10 10 10
> t(x)
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
a12345678910
b12345
Greetings,
I have a data set look like this:
> print(MyResult)
259 10
1113
mean6.108394 3.272211e+01 3.951703e+02 2.086217e+03
79.838867 2.592272e+04
median 1.29 2.743511e+00 4.061491e+00 4.943710e+01
-2.821667
3 matches
Mail list logo