x=iris[,1:4]
summary(x)
How can I make this?
I use this:  
Sepal.Length=c("Min.   :4.300","1st Qu.:5.100","Median :5.800","Mean   :5.843","3rd Qu :6.400","Max.   :7.900")  
Sepal.Width=c("Min.   :2.000","1st Qu.:2.800","Median :3.000","Mean   :3.057","3rd Qu :3.300","Max.   :4.400")  
Petal.Length=c("Min.   :1.000","1st Qu.:1.600","Median :4.350","Mean   :3.758","3rd Qu :5.100","Max.   :6.900")  
Petal.Width=c("Min.   :0.100","1st Qu.:0.300","Median :1.300","Mean   :1.199","3rd Qu :1.800","Max.   :2.500")  
kk=cbind(Sepal.Length,Sepal.Width,Petal.Length,Petal.Width)  
as.table(kk)  
but It has row names (A,B,C,D,E,F)
![enter image description here][2]
How can i delete that letters??
Or Does any different ways to make this table??
Please Help
 
     
    