diff -Nru scatterplot3d-0.3-30/CHANGES scatterplot3d-0.3-31/CHANGES --- scatterplot3d-0.3-30/CHANGES 2010-01-19 09:56:27.000000000 +0000 +++ scatterplot3d-0.3-31/CHANGES 2010-10-29 16:37:03.000000000 +0000 @@ -59,6 +59,8 @@ 0.3-28: bugfix: y sorted revserse (and hence had also wrong tick labels) for angles > 180. 0.3-29: bugfix: retunred function points3d()/xyz.convert()/plane3d can deal with angle > 180 0.3-30: added argument lty.hplot for controllling horizontal line style, by Jari Oksanen + 0.3-31: fix cex.symbols reordering bug + known UNfixed bug: xlim, ylim, zlim don't work *exactly* for enlarged areas diff -Nru scatterplot3d-0.3-30/debian/changelog scatterplot3d-0.3-31/debian/changelog --- scatterplot3d-0.3-30/debian/changelog 2010-01-29 13:11:36.000000000 +0000 +++ scatterplot3d-0.3-31/debian/changelog 2010-11-21 00:02:29.000000000 +0000 @@ -1,3 +1,14 @@ +scatterplot3d (0.3-31-1) unstable; urgency=low + + * Bump Standards-Version to 3.9.1 (no changes necessary) + * New upstream release + + [Steffen Moeller] + * DM-U-A flag set + * added CRAN homepage to debian/control + + -- Philip Rinn Thu, 11 Nov 2010 13:35:12 +0100 + scatterplot3d (0.3-30-1) unstable; urgency=low * Bump Standards-Version to 3.8.4 (no changes necessary) diff -Nru scatterplot3d-0.3-30/debian/control scatterplot3d-0.3-31/debian/control --- scatterplot3d-0.3-30/debian/control 2010-01-30 00:55:35.000000000 +0000 +++ scatterplot3d-0.3-31/debian/control 2010-11-21 00:01:12.000000000 +0000 @@ -3,14 +3,17 @@ Priority: optional Maintainer: Philip Rinn Build-Depends: debhelper (>> 7.0.50), cdbs, r-base-dev (>= 2.7.0) -Standards-Version: 3.8.4 +Standards-Version: 3.9.1 +DM-Upload-Allowed: yes +Homepage: http://cran.r-project.org/web/packages/scatterplot3d Package: r-cran-scatterplot3d Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, r-base-core (>= 2.7.0) Description: GNU R package for Visualizing Multivariate Data - Scatterplot3d is a GNU R package for the visualization of multivariate data - in a three dimensional space. Basically, scatterplot3d generates a scatter plot + Scatterplot3d is an GNU R package for the visualization of multivariate data + in a three dimensional space. Basically scatterplot3d generates a scatter plot in the 3D space using a parallel projection. Higher dimensions (fourth, fifth, etc.) of the data can be visualized to some extent using, e.g. different colors, symbol types or symbol sizes. + diff -Nru scatterplot3d-0.3-30/debian/rules scatterplot3d-0.3-31/debian/rules --- scatterplot3d-0.3-30/debian/rules 2010-01-17 21:46:12.000000000 +0000 +++ scatterplot3d-0.3-31/debian/rules 2010-11-11 16:36:45.000000000 +0000 @@ -2,8 +2,10 @@ include /usr/share/R/debian/r-cran.mk -## additional chmod install/r-cran-scatterplot3d:: + ## remove compiled documentation + rm $(debRlib)/$(cranName)/doc/s3d.pdf + ## additional chmod chmod 0644 $(debRlib)/$(cranName)/doc/*.* chmod 0644 $(debRlib)/$(cranName)/CITATION chmod 0644 $(debRlib)/$(cranName)/po/en/LC_MESSAGES/R-scatterplot3d.mo diff -Nru scatterplot3d-0.3-30/DESCRIPTION scatterplot3d-0.3-31/DESCRIPTION --- scatterplot3d-0.3-30/DESCRIPTION 2010-01-19 11:27:21.000000000 +0000 +++ scatterplot3d-0.3-31/DESCRIPTION 2010-11-03 07:43:10.000000000 +0000 @@ -1,6 +1,6 @@ Package: scatterplot3d -Version: 0.3-30 -Date: 2010-01-19 +Version: 0.3-31 +Date: 2010-10-29 Title: 3D Scatter Plot Author: Uwe Ligges Maintainer: Uwe Ligges @@ -8,6 +8,6 @@ Depends: R (>= 2.7.0) License: GPL-2 Encoding: latin1 -Packaged: 2010-01-19 10:28:51 UTC; ligges +Packaged: 2010-10-29 16:39:00 UTC; ligges Repository: CRAN -Date/Publication: 2010-01-19 11:27:21 +Date/Publication: 2010-11-03 07:43:10 Binary files /tmp/XjzkgiL8PQ/scatterplot3d-0.3-30/inst/doc/s3d.pdf and /tmp/RsT2daP8u6/scatterplot3d-0.3-31/inst/doc/s3d.pdf differ diff -Nru scatterplot3d-0.3-30/R/scatterplot3d.R scatterplot3d-0.3-31/R/scatterplot3d.R --- scatterplot3d-0.3-30/R/scatterplot3d.R 2010-01-19 09:57:53.000000000 +0000 +++ scatterplot3d-0.3-31/R/scatterplot3d.R 2010-10-29 16:33:59.000000000 +0000 @@ -86,6 +86,10 @@ if(length(pch) != length(y.ord)) stop("length(pch) ", "must be equal length(x) or 1") else pch <- pch[y.ord] + if(length(cex.symbols) > 1) + if(length(cex.symbols) != length(y.ord)) + stop("length(cex.symbols) ", "must be equal length(x) or 1") + else cex.symbols <- cex.symbols[y.ord] daty <- dat$y daty[!is.finite(daty)] <- mean(daty[is.finite(daty)]) if(highlight.3d && !(all(diff(daty) == 0)))