> a=c(1,2,3,4)  
> a      
[1] 1 2 3 4  
> typeof(a)  
[1] "double"  
> mode(a)  
[1] "numeric"  
> attributes(a)  
NULL 
> str(a)  
num [1:4] 1 2 3 4  
is there something to make a display it vector?
> a=c(1,2,3,4)  
> a      
[1] 1 2 3 4  
> typeof(a)  
[1] "double"  
> mode(a)  
[1] "numeric"  
> attributes(a)  
NULL 
> str(a)  
num [1:4] 1 2 3 4  
is there something to make a display it vector?