R/tabla.R

Defines functions tabla

Documented in tabla

tabla <- function(min, max, p){    
  secue <- seq(min,max,by=min)
  matriz <- matrix(0,nrow=length(secue),1)
  
  for(i in 1:length(secue)){
    matriz[i,] <- pJ2(secue[i],p)
  }
  return(matriz)
}

Try the Bayesiantreg package in your browser

Any scripts or data that you put into this service are public.

Bayesiantreg documentation built on May 29, 2024, 6:44 a.m.