## S3 method for class 'bic.glm':
\method{plot(x, e = 1e-04, mfrow = NULL, include = 1:length(x$namesx), ...) include.intercept = TRUE, ...)
## S3 method for class 'bic.glm':
plot(x, e = 1e-04, mfrow = NULL, include = 1:length(x$namesx), ...)
## S3 method for class 'bic.surv':
plot(x, e = 1e-04, mfrow = NULL, include = 1:length(x$namesx), ...)
e
specifies the range over which the distributions are to be graphed by specifying the tail probabilities that dictate the range to plot over.library(MASS)
data(UScrime)
x<- UScrime[,-16]
y<- log(UScrime[,16])
x[,-2]<- log(x[,-2])
plot( bicreg(x, y))
Run the code above in your browser using DataLab