R/plotObservedEffectsDefault.R

Defines functions `plotObservedEffectsDefault`

`plotObservedEffectsDefault` <-
function(x, z, ...) {
	if (is.null(dim(x))) {
		plot(x,z, xlab = "p1")
	}
	else {
		createWindow(dim(x)[2])
		for (i in 1:dim(x)[2]) {
			plot(x[,i], z, xlab = paste("p", i))
		}
	}

}

Try the mlegp package in your browser

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

mlegp documentation built on Jan. 20, 2026, 9:07 a.m.