Displaying 2 results from an estimated 2 matches for "_print_".
Did you mean:
_printf
2007 Nov 12
2
specifying decimal places
hie
how do I specify the number of decuimal places for my calulations
thanks
__________________________________________________
[[alternative HTML version deleted]]
2007 Dec 05
2
Dimension of a vector
Consider the following:
> A <- 1:10
> A
[1] 1 2 3 4 5 6 7 8 9 10
> dim(A)
NULL
> dim(A) <- c(2,5)
> A
[,1] [,2] [,3] [,4] [,5]
[1,] 1 3 5 7 9
[2,] 2 4 6 8 10
> dim(A)
[1] 2 5
> dim(A) <- 10
> A
[1] 1 2 3 4 5 6 7 8 9 10
> dim(A)
[1] 10
Would it not make sense to have dim(A) = length(A) for all vectors?