[scatterplot3d] 01/03: New upstream version 0.3-38
Philip Rinn
rinni-guest at moszumanska.debian.org
Sat Jan 7 10:10:24 UTC 2017
This is an automated email from the git hooks/post-receive script.
rinni-guest pushed a commit to branch master
in repository scatterplot3d.
commit 5030171d19165b770139f73f039cebdcd46053bb
Author: Philip Rinn <rinni at inventati.org>
Date: Sat Jan 7 10:59:28 2017 +0100
New upstream version 0.3-38
---
CHANGES | 1 +
DESCRIPTION | 8 ++++----
MD5 | 10 +++++-----
R/scatterplot3d.R | 6 +++++-
inst/doc/s3d.pdf | Bin 421371 -> 421379 bytes
vignettes/SFBs3d_Related.tex | 2 +-
6 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/CHANGES b/CHANGES
index 35b52e5..1416aba 100644
--- a/CHANGES
+++ b/CHANGES
@@ -67,6 +67,7 @@ Changes in 0.3-x releases of scatterplot3d:
(reported by Hans-Joachim Pitz)
0.3-36: import from base packages
0.3-37: allow for solid (colored) 3d planes
+ 0.3-38: Fix Omegahat URL in the vignette, allow to visualize lm objects without intercept by s3d$plane3d()
known UNfixed bug:
xlim, ylim, zlim don't work *exactly* for enlarged areas
diff --git a/DESCRIPTION b/DESCRIPTION
index 5a1917c..f90846f 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,6 +1,6 @@
Package: scatterplot3d
-Version: 0.3-37
-Date: 2016-05-24
+Version: 0.3-38
+Date: 2017-01-05
Title: 3D Scatter Plot
Author: Uwe Ligges <ligges at statistik.tu-dortmund.de>, Martin Maechler, Sarah Schnackenberg
Maintainer: Uwe Ligges <ligges at statistik.tu-dortmund.de>
@@ -10,6 +10,6 @@ License: GPL-2
Encoding: latin1
Imports: grDevices, graphics, stats
NeedsCompilation: no
-Packaged: 2016-05-24 11:03:33 UTC; ligges
+Packaged: 2017-01-05 16:11:38 UTC; ligges
Repository: CRAN
-Date/Publication: 2016-05-24 13:06:14
+Date/Publication: 2017-01-05 19:03:19
diff --git a/MD5 b/MD5
index 4d7d13c..bb2cefc 100644
--- a/MD5
+++ b/MD5
@@ -1,11 +1,11 @@
-45e9b034511467fe1cae2489f5f3993c *CHANGES
-4aa11c316317499ce4bd39874cd44d32 *DESCRIPTION
+d7fdc39a0a554b46f2c80b989b129f9a *CHANGES
+6f91d99e13747c6126fc0073362b4d62 *DESCRIPTION
f0be121a6dd3fba1bab32eded326a5eb *NAMESPACE
-1151f5d5be7ecebe65866992cb996d2d *R/scatterplot3d.R
+d3e1a06e349bc00a102c14c82ed20e09 *R/scatterplot3d.R
96c296102f1d75798741c744ed272921 *build/vignette.rds
75f154fc6802f86cefa004239b048243 *inst/CITATION
4227d2d500d52cdd18b7af5407621be0 *inst/doc/s3d.Rnw
-223d7de2f122254345b81777cc05818d *inst/doc/s3d.pdf
+50f5a5659e6af097d50b796239c1d419 *inst/doc/s3d.pdf
50051f0feb902cf69820d01c45373e07 *inst/po/de/LC_MESSAGES/R-scatterplot3d.mo
3dd8ff033a10120127977c076dd14724 *inst/po/en/LC_MESSAGES/R-scatterplot3d.mo
cc2b2a15cd28221fb2239af3f04ddebd *man/scatterplot3d.Rd
@@ -18,7 +18,7 @@ b854e32e514713ba873887ef210a8be5 *vignettes/SFBs3d_Design.tex
8d79f7e190ecf7cd9a5cfb78520647dd *vignettes/SFBs3d_Examples.tex
a29bb41cfe461e3b5afd84415ed01293 *vignettes/SFBs3d_Extend.tex
57926a175b0791c3efb6b5b604f53b04 *vignettes/SFBs3d_Intro.tex
-3a642d2c5a65f25bf3b54809c66ab914 *vignettes/SFBs3d_Related.tex
+b1ec0a59575eb48f58cf42041680042b *vignettes/SFBs3d_Related.tex
748bbde433d9767b7b0ed41356671f52 *vignettes/barplot.pdf
fc86c9f5ecaaabab42a9f988da447d9b *vignettes/binorm.pdf
9a1a7021d6a618cc499c174526b65f88 *vignettes/business.pdf
diff --git a/R/scatterplot3d.R b/R/scatterplot3d.R
index 3ad9a0d..95255a4 100644
--- a/R/scatterplot3d.R
+++ b/R/scatterplot3d.R
@@ -311,7 +311,11 @@ function(x, y = NULL, z = NULL, color = par("col"), pch = par("pch"),
lty = "dashed", lty.box = NULL, draw_lines = TRUE, draw_polygon = FALSE,
polygon_args = list(border = NA, col = rgb(0,0,0,0.2)),
...){
- if(!is.atomic(Intercept) && !is.null(coef(Intercept))) Intercept <- coef(Intercept)
+ if(!is.atomic(Intercept) && !is.null(coef(Intercept))){
+ Intercept <- coef(Intercept)
+ if(!("(Intercept)" %in% names(Intercept)))
+ Intercept <- c(0, Intercept)
+ }
if(is.null(lty.box)) lty.box <- lty
if(is.null(x.coef) && length(Intercept) == 3){
x.coef <- Intercept[if(angle > 2) 3 else 2]
diff --git a/inst/doc/s3d.pdf b/inst/doc/s3d.pdf
index b40e460..93ae0a5 100644
Binary files a/inst/doc/s3d.pdf and b/inst/doc/s3d.pdf differ
diff --git a/vignettes/SFBs3d_Related.tex b/vignettes/SFBs3d_Related.tex
index b149541..6127156 100644
--- a/vignettes/SFBs3d_Related.tex
+++ b/vignettes/SFBs3d_Related.tex
@@ -14,7 +14,7 @@ a \emph{xgobi} process appropriately.
(\cite{swayne02}) is the next edition of \emph{xgobi}.
Analogously to \emph{xgobi} a \RR\ package \emph{Rggobi} (\cite{temple01})
-exists in the \emph{Omegahat} project\footnote{\url{http://www.omegahat.org}}
+exists in the \emph{Omegahat} project\footnote{\url{http://www.omegahat.net}}
(\cite{temple00}) that allows one to embed \emph{ggobi} within
\RR\ and to both set and query the \emph{ggobi} contents. All in all,
\emph{ggobi} can be loaded dynamically into \RR\ (as well as into other
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/scatterplot3d.git
More information about the debian-science-commits
mailing list