q**j 发帖数: 10612 | 1 summary()里面没有standard deviation, number of obs etc. 有没有想SAS proc
univariate那样的,不管需要不需要把一大堆东西都列出来的命令。多谢。 | a********s 发帖数: 188 | 2 As I know, in the "fields" package, there is a command called "stats". It
will give you some summary statistics.
> x <- rnorm(100)
> stats(x)
[,1]
N 100.00000000
mean -0.07428952
Std.Dev. 1.06499615
min -2.95460934
Q1 -0.78322169
median 0.05682159
Q3 0.54592729
max 2.10738027
missing values 0.00000000 |
|