Revision 899d6ebe6d6f86090ba8c139b6c970b4c326e5b0 authored by Edzer Pebesma on 16 September 2011, 00:00:00 UTC, committed by Gabor Csardi on 16 September 2011, 00:00:00 UTC
1 parent 8c9f4d1
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