Viewing 3 posts - 1 through 3 (of 3 total)
i <- c(1,2,3)
> j <- c(4,5)
> k <- i * j
Warning message:
In i * j : longer object length is not a multiple of shorter object length
> k
[1] 4 10...
May 19, 2021 at 11:41 pm
#3885594
In addition to the missing 'c' on second vector, error will be thrown on matrix multiplication due to second vector being 1 element shorter than the first. Add 1 to...
May 19, 2021 at 9:32 pm
#3885518
I use DBeaver testing Oracle queries on a daily basis at my job due to not being allowed to use an Oracle Client like SQL Developer. It is good for...
October 17, 2017 at 6:22 pm
#1964127