Revision 7b5f26a6317ea33e36572b02742c938176457712 authored by Edzer J. Pebesma on 08 October 2008, 18:06:07 UTC, committed by cran-robot on 08 October 2008, 18:06:07 UTC
1 parent d4edcc8
Raw File
image.data.frame.R
# $Id: image.data.frame.q,v 1.4 2006-02-10 19:01:07 edzer Exp $

"image.data.frame" <-
function (x, zcol = 3, xcol = 1, ycol = 2, asp = 1, ...)
{
    image.default(xyz2img(xyz = x, zcol = zcol, xcol = xcol, ycol = ycol),
		asp = asp,
		...)
}
back to top