powered by
Gets mod of a to base b
mod(a,b)
input- an integer
input - an integer
remainder of a/b or mod(a,b)
# NOT RUN { mod(5,3) ## The function is currently defined as mod<-function(a,b) {a-b*floor(a/b)} # }
Run the code above in your browser using DataLab