similar to: New package: gpclib

Displaying 20 results from an estimated 4000 matches similar to: "New package: gpclib"

2004 May 11
2
How to draw holes generated by gpclib using plot function
Hi. I've tried to create a polygon with one hole by gpclib using following example script. holepoly <- read.polyfile(system.file("poly-ex/hole-poly.txt", package ="gpclib"), nohole = FALSE) area.poly(holepoly) plot(holepoly,poly.args=list(col="red",border="blue")) And I noticed plot function couldn't draw polygons with holes correctly.
2010 Jul 08
0
0 exit status on packages update try
I am not entirely sure what is going on. I am sure that I am missing something. maptools won't detach... Thanks for all of your help. R 2.11.1 OS Ubuntu 10.04 R --vanilla install.packages("sp", dep=TRUE) Loading required package: reshape Loading required package: plyr Loading required package: grid Loading required package: proto This is vegan 1.17-3 Loading required package:
2009 Jun 10
1
gpc.poly datatype
I have a list of polygons generated by the contourLines() command (each object of the list is a list in itself with two objects: a vector of x values, and a vector of y values for each vertex). I wish to convert that list into a gpc.poly object of multiple contours. How do I do this? gpclib apparently has no method of coercing lists into the gpc.poly object type. As well, when I have a
2007 Apr 04
1
gpclib library
Hi all, I'm tring to download the gpclib library but I don't find it in the old repository install.packages(c("gpclib"), dependencies=TRUE, repos="http://cran.cnr.berkeley.edu/") Avviso in install.packages(c("gpclib"), dependencies = TRUE, repos = "http://cran.cnr.berkeley.edu/") : argument 'lib' is missing: using
2007 Jun 15
1
gpclib problem
Hi all, I am trying to test the new adehabitat package but I have a problem with a linked library, "gpclib". When I try do install it I have this output: install.packages("gpclib", dependencies=TRUE, repos="http://cran.cnr.berkeley.edu/") Avviso in install.packages("gpclib", dependencies = TRUE, repos = "http://cran.cnr.berkeley.edu/") : argument
2003 Apr 30
0
Problem with R CMD INSTALL and package versions (PR#2878)
Full_Name: Roger Peng Version: 1.7.0 OS: Linux (Red Hat 8.0) Submission from: (NULL) (68.64.112.179) There seems to be a problem with R CMD INSTALL using --with-package-versions. First, when using --save and --with-package-versions together, I get the following output (in this case, for the `snow' package): -- marla:> R CMD INSTALL --save --with-package-versions snow_0.1-1.tar.gz *
2010 Jun 02
2
Faster union of polygons?
Dear R-helpers, thanks for yesterday's speeding-up tip. Here is my next query: I have lots of polygons (not necessarily convex ones, and they never have holes) given by x,y coordinates. I want to get the polygon that is the union of these polygons. This is my current method, but I am hoping there is a faster method (up to thousands of polygons, each with ca. 40 xy points). Example:
2012 Sep 14
0
problem with user defined panel function in xyplot
Hi everyone, ? I am trying to do a horizonplot using my own time series data. I know that there is a horizonplot function in latticeExtra, but on closer examination i think that the graph itself is slightly wrong (it displays some regions as triangles and i think they should be trapezoids, and the red regions (that are below the baseline) are displayed on top of the blue areas ? while i think
2003 Jan 14
1
install problem: gpclib
Dear list, I face some problems installing gpclib_1.0-1.tar.gz: R-161 R : Copyright 2002, The R Development Core Team Version 1.6.1 (2002-11-01) [...] system("R CMD INSTALL gpclib_1.0-1.tar.gz") WARNING: ignoring environment value of R_HOME ERROR: This R is version 1.5.0 package 'gpclib' depends on R 1.6.1 The same happens with http://www.bioconductor.org/getBioC.R
2003 Jan 21
0
FW: Contour Plots
Huan, If you have not already received an answer, try this, it helped me immensely and solved my problem. Mike -----Original Message----- From: Roger Peng [mailto:rpeng at stat.ucla.edu] Sent: Wednesday, January 15, 2003 9:30 AM To: mhoward Cc: 'r-help at lists.R-project.org' Subject: Re: [R] Contour Plots I believe this was discussed about two days ago -- check the archives under
2003 May 01
0
system.file() and .path.package() incorrect with package versions
The system.file() and .path.package() functions appear to be unaware of package versions and can return incorrect information or fail if a package is installed using `installWithVers = TRUE' of install.packages(). For example, I can run > install.packages("session", "~/R-local/libs", installWithVers = TRUE) and > library(session, version = "1.0.1")
2002 Aug 31
1
building r-devel on RedHat 7.1 with gcc 3.1.1
Has anyone tried to build r-devel on a RedHat 7.1 with the gcc 3.1.1 compiler? I didn't have problems with gcc 2.95.x or gcc 3.0.4, but when I ran the configure with gcc 3.1.1 I got the following error: [...] checking whether gcc accepts -M for generating dependencies... yes checking whether gcc supports -c -o FILE.lo... yes checking how to get verbose linking output from g77... -v checking
2005 Mar 22
1
make install fails with makeinfo < 4.7
When I build R-devel (or the alpha snapshots) on a system without makeinfo >= 4.7, I get a warning about not being able to build HTML/Info help pages after running 'configure' (but 'make' runs smoothly and there are no errors). However, when I run 'make install' I get an error, something like make[2]: Entering directory
2003 Jan 30
1
vector passed to `if' in `pgamma'
In the current R-devel sources, the `pgamma' function gives a warning when the `shape' argument is passed as a vector of length > 1. That is, > pgamma(3, 1) [1] 0.950213 > pgamma(3, c(1, 2)) [1] 0.9502129 0.8008517 Warning message: the condition has length > 1 and only the first element will be used in: if (shape <= 0) stop("shape must be strictly positive")
2002 Jun 22
1
Does matmult exist?
Does the function 'matmult' still exist in R? It has a help page and is referenced in the help page for 'kronecker', but I can't seem to access the function itself. Obviously, not an issue of great concern but just a curiosity. > version _ platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32 status
2002 Oct 24
1
packages in non-system directories
Quick question about installing packages on a system where you do not have root access. Suppose a person is using R on a shared system where he cannot write to the installation directory (i.e. /usr/local/lib/R). What general advice would you give regarding where to install packages from CRAN. Should he use the R_LIBS environment variable or maybe .libPaths() in R or .Renviron? Thanks, -roger
2002 Dec 30
2
Writing packages with `methods' package
I'm trying to write a package which uses classes/methods as defined in the `methods' package. I have a single .R file which defines the class and various methods for that class. At the top of the file I have require(methods) and then setClass("myclass", ...) setGeneric("intersect") setMethod("intersect", "myclass", function(x,y) ...) I noticed
2003 Feb 23
0
unsubscribe
From:r-devel-admin@stat.math.ethz.ch on 02/22/2003 12:00 PM CET Sent by: r-devel-admin@stat.math.ethz.ch Please respond to r-devel@stat.math.ethz.ch To: r-devel@stat.math.ethz.ch cc: (bcc: Asheka Rahman/arahma1/LSU) Subject: R-devel digest, Vol 1 #101 - 10 msgs Send R-devel mailing list submissions to r-devel@stat.math.ethz.ch To subscribe or unsubscribe via the World Wide Web,
2002 Aug 28
2
sourcing a file with the plot.lme() function
I ran into a problem trying to make a plot from a file that's read using source. Basically, I have the following code in a file "plot.R" : library(nlme) data(Loblolly) fm1 <- nlme(height ~ SSasymp(age, Asym, R0, lrc), data = Loblolly, fixed = Asym + R0 + lrc ~ 1, random = Asym ~ 1, start = c(Asym = 103, R0 = -8.5, lrc = -3.3))
2004 Jun 23
1
problem with tilde expansion in install.packages
In R 1.9.0 on Solaris/Sparc when I run, for example, install.packages("gregmisc", "~/R-local/lib"), instead of installing the `gregmisc' package in the directory /users/student/rpeng/R-local/lib the package gets installed in /users/student/rpeng/\~/R-local/lib, so the directory \~ is created in my home directory. This doesn't happen to me on Linux or Windows so I