R/print.point.R

# print.point prints out INFORMATION ABOUT an object of class "point"
assign("print.point",
function(x,...) {

  cat(paste('\nPoint object:',deparse(substitute(x)),'\n'))

  cat(paste('\n   Locations: ',length(x$x),sep=''))
  cat(paste('\n\n   Attributes:\n      ',paste(names(x),
                    collapse='\n      '),sep=''))
  cat('\n\n')


})

Try the sgeostat package in your browser

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

sgeostat documentation built on May 1, 2019, 6:31 p.m.