[R-gregmisc-users] SF.net SVN: r-gregmisc:[1502] trunk/gplots/R
Brought to you by:
warnes
From: <wa...@us...> - 2011-09-02 18:20:21
|
Revision: 1502 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1502&view=rev Author: warnes Date: 2011-09-02 18:20:15 +0000 (Fri, 02 Sep 2011) Log Message: ----------- Fix naming error Added Paths: ----------- trunk/gplots/R/print.hist2d.R Removed Paths: ------------- trunk/gplots/R/print.hist2d Deleted: trunk/gplots/R/print.hist2d =================================================================== --- trunk/gplots/R/print.hist2d 2011-09-02 18:14:37 UTC (rev 1501) +++ trunk/gplots/R/print.hist2d 2011-09-02 18:20:15 UTC (rev 1502) @@ -1,19 +0,0 @@ -# $Id: hist2d.R 1471 2011-08-16 01:03:31Z warnes $ - -print.hist2d <- function(x, ...) - { - cat("\n") - cat("----------------------------\n") - cat("2-D Histogram Object\n") - cat("----------------------------\n") - cat("\n") - cat("Call: ") - print(x$call) - cat("\n") - cat("Number of data points: ", x$nobs, "\n") - cat("Number of grid points: ", length(x$x), "x", length(x$y), "\n") - cat("X range: (", min(x$x), ",", max(x$x), ")\n") - cat("Y range: (", min(x$y), ",", max(x$y), ")\n") - cat("\n") - - } Copied: trunk/gplots/R/print.hist2d.R (from rev 1501, trunk/gplots/R/print.hist2d) =================================================================== --- trunk/gplots/R/print.hist2d.R (rev 0) +++ trunk/gplots/R/print.hist2d.R 2011-09-02 18:20:15 UTC (rev 1502) @@ -0,0 +1,19 @@ +# $Id: hist2d.R 1471 2011-08-16 01:03:31Z warnes $ + +print.hist2d <- function(x, ...) + { + cat("\n") + cat("----------------------------\n") + cat("2-D Histogram Object\n") + cat("----------------------------\n") + cat("\n") + cat("Call: ") + print(x$call) + cat("\n") + cat("Number of data points: ", x$nobs, "\n") + cat("Number of grid points: ", length(x$x), "x", length(x$y), "\n") + cat("X range: (", min(x$x), ",", max(x$x), ")\n") + cat("Y range: (", min(x$y), ",", max(x$y), ")\n") + cat("\n") + + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |