Displaying 20 results from an estimated 10000 matches similar to: "Mapping (followup) + package installation"
2001 Oct 31
3
maps in R (fwd)
Here is the answer to an old question of mine, regarding maps in R
Hope this help.
claudia
---------- Forwarded message ----------
Date: Mon, 25 Jun 2001 13:48:05 -0400
From: Kieran Healy <kjhealy at Princeton.EDU>
To: Claudia Tebaldi <tebaldi at ucar.edu>
Subject: Re: [R] maps in R
Hi Claudia --
you can get the maps() library from here:
2012 Oct 08
2
device error pdf
Hi,
Iwrote 'pdfc' in analogy to 'lpr':
pdfc <- function (file = "Rplot.pdf") {
current.device <- dev.cur()
dev.off(dev.copy(device = pdf, file = file, ...))
dev.set(current.device)
print(paste(file, "generated."))
}
lpr <- function (object, file = "Rplotlpr.ps", ...)
{
if (missing(object)) {
current.device <-
2001 Jul 03
1
plot.mts() with type="p" (PR#1010)
There appears to be a bug in plot.mts() in R-1.3.0 when attempting to
do a multiple point plot (this worked in 1.2.2).
Reproduce by:
> version
_
platform sparc-sun-solaris2.8
arch sparc
os solaris2.8
system sparc, solaris2.8
status
major 1
minor 3.0
year 2001
2003 Feb 12
4
Interpolation
Dear all,
I have two vectors and connect the points by line segments:
x <- c(1990,1994,1995,1997)
y <- c(30,40,80,20)
plot(x,y,type="l")
I want to get the values of y's on these lines at missing x's,
i.e., at 1991,1992,1993,and 1996. Is there a simple way to do this?
Best regards,
Remigijus mailto:remigijus.lapinskas at maf.vu.lt
2004 Apr 02
1
R on Tru64 OSF 5.1
Has anyone achieved a current successful build of R
1.8 or 1.9 or earlier for HPUX Tru 64 OSF 5.1?
There is no binary version of R for HPUX Tru 64 OSF
5.1. The R admin manual mentions that the native make
fails on "Alpha/OSF (aka Tru 64)" and gnu make must be
used instead. There are problems reported with
building R versions around 1.4 from 2002 on R-devel,
some of which were fixed with
2002 Jun 13
2
Output of clustering packages
Dear all,
I am sorry because my question is perhaps trivial and is certainly a
detail.
It's related to the output of some clustering package
as mclust and e1071. The output is as follows :
[1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1
[38] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1
[75] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
2002 Jun 13
1
A random insertion position in a vector
A student asked me about simulation he is doing. This simulation
presented an interesting R programming puzzle that we did solve but I
am not happy with the solution. I feel there should be a better way
of doing this.
Briefly, he is simulating births and deaths in a linear array of cells.
Births and deaths are required to alternate.
For a birth, one of the cells is selected at random to be the
2000 Feb 23
1
Large datasets under R
Hello,
I recall reading a thread months ago on this mailing list about handling
very datasets under R, but I can't seem to find it. This has become
particularly important recently, because I've been playing with a dataset
containing information about every fatal car accident in the U.S. since
1975; in total, the relevant files are about 120 megs. I'd like to load
all of these into R
1999 Nov 03
3
bug in Rdconvlib.pl converting to latex (PR#311)
If .../<pkg>/man/ contains a filename beginning with [, such as
[.datetimes, Rdconvlib.pl cannot convert that help file into latex at
INSTALL time. [Using --no-latex is a workaround.]
The error given is:
# R INSTALL ssCatalogues
:
help
>>> Building/Updating help pages for package `ssCatalogues'
Formats: text html latex example
/^[.datetimes$/: unmatched [] in regexp at
2003 Feb 17
4
inserting elements in a list
I've searched the doc for insert
and could not find the way to do the following,
hope someone can help:
Let's say we have a vector:
> a
[1] "1" "2" "3" "5" "6" "3"
and we want to insert a "7" after
any given "3", i.e., we want vector a
to become:
[1] "1" "2" "3"
2015 Jun 15
2
[LLVMdev] Expressing ambiguous points-to info in AliasAnalysis::alias(...) results?
On Mon, Jun 15, 2015 at 4:54 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
> > I'm mostly going from Robert Wilson's 1997 phd thesis, although I'm
> pretty
> > sure I've seen a lot of the same ideas elsewhere as well.
>
> Yes, using summary/transfer functions has been tried a lot.
> Note: the numbers in most of these phd thesis do *not* get born
2003 Jul 23
2
trouble with maps
Has anyone else seen this behavior from the "maps" package?
map('state', fill=TRUE)
results in a lively mix of overlapping polygons inside a
map of the US, but they have no obvious relationship to
state boundaries. (See attached jpeg.)
-------------- next part --------------
I reinstalled the maps and mapdata packages from
ftp://ftp.mcs.vuw.ac.nz/pub/statistics/map/
2002 Sep 16
1
Running Median and Mean
R gurus,
On Aug 20, 2002, I asked in R-help about calculating a running 5-day median on
a large matrix. Thanks to Martin Maechler <maechler@stat.math.ethz.ch> and Ray
Brownrigg <Ray.Brownrigg@mcs.vuw.ac.nz> for responding.
I ended up writing C code (and an R interface) to do it, which is about 1000x
faster than the naive method! (72s became .09s on a 223 x 520 matrix). I
added a
2003 Jun 13
2
maps library for R?
Hi there,
Does it already exist a library in R to draw maps (something like a Generic
Mapping Toolbox, http://gmt.soest.hawaii.edu/ port).
I've seen in an old R-help that Ross Ihaka once tried to port the S-plus map
library (http://maths.newcastle.edu.au/~rking/R/help/99b/0832.html ).
Anybody know if this package is available somewhere or if there is somebody
developing a Mapping package
2006 Apr 08
2
auth problem with dovecot-1.0.beta5
Hey folks,
Let me start by saying I really love what I see so far! Dovecot seems
to be extremely feature-rich, and unlike a lot of free software the
documentation is extremely good! I gave up on courier IMAP because of
the poor documentation, and I have to say Dovecot sure differentiates
itself in that area!
Unfortunately I still can't get it going :-/
First thing I noticed is that
2012 Apr 11
3
[LLVMdev] Incorrect result in LLVM Alias Analysis
I have used the follwing command,
opt -load LLVComMan.so -ComMan -memdep -tbaa -mem2reg maptest.ll -S
What option other than -mem2reg should be included in this case to get the
right results? Does the order in which I specify the optimizations to be run
make a difference?
Duncan Sands wrote:
>
> Hi Adarsh,
>
>> I want to check if the values a and b in the program alias.
2003 Nov 10
5
Subsetting a list of vectors
Hi,
I'm trying to subset a list which contains variable length vectors.
What I want to do is extract (eg.) the 3rd item in each vector (with
length >= 3). At the moment I'm using sapply(list.of.vectors,
function(x) {x[3]}). The problem with this is that sapply returns a
list of the same length of list.of.vectors so I end up with a whole lot
of null entries from those vectors
2001 Nov 07
4
Mapping in R - in the common sense
Dear R people,
I am wondering how difficult it would be to produce graphs based on maps in R (like "a county is red
where x is high"). I reckon this requires the coordinates for the polygons that make up the
map and also a mapping to a set of identifiers to assign colours, hatches, etc.
Would it be possible to pass R a vector graphics of the map and back out the polygon definitions
2012 Apr 13
2
[LLVMdev] Incorrect result in LLVM Alias Analysis
It contains the bitcode file(without any optimization) of the below program,
void map(int *a)
{
*a=20;
}
int main(){
int *a=(int *)malloc(sizeof(int));
*a=15;
map(a);
return 0;
}
I want to check if the pointer operand of each store instruction aliases
with the function's arguments. I have used below code for this,
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
2002 Jan 04
1
plotting maps?
I thought I had plotted a map of oregon and washington and overlayed some
points using R. Is that possibe since I can't seem to find the source file I
used or commands for plotting maps and points?
If not, sorry for the bother...
Thanks,
Jeff.
Jeff D. Hamann
Hamann, Donald & Associates, Inc.
PO Box 1421
Corvallis, Oregon USA 97339-1421
Bus. 541-753-7333
Cell. 541-740-5988
jeff_hamann