Archives for Software Dev - Page 25

Use Case – Customer withdraws cash from Teller (or ATM machine) by filling out a withdrawal slip (or form on ATM machine)

Use Case - Customer withdraws cash from Teller (or ATM machine) by filling out a withdrawal slip (or form on ATM machine). Problem Statement: 1. Design the system so that…
Continue Reading

Quick Intro to R

Also see, The BigData Landscape   x <- "Hello World";print(x)#vectorv <- c(1, 2, 3)print(v)#sequences <- 1:5print(s)#matrixm <- matrix(data = 1:6, nrow = 2, ncol = 3)#arraya <- array(data = 1:8,…
Continue Reading