Displaying 20 results from an estimated 535 matches for "rhelp".
Did you mean:
help
2009 May 11
0
Partial correlation function required
...yz0.zc <- pcor.rec(y,z0,zc,method=method,na.rm=na.rm)
rxy.z <- (rxy.zc - rxz0.zc*ryz0.zc)/(
sqrt(1-rxz0.zc^2)*sqrt(1-ryz0.zc^2) )
return(rxy.z)
}
}
and this piece of code also i tried to use.
Rinv <- solve <http://wiki.r-project.org/rwiki/rhelp.php?id=solve>(R)
D <- diag <http://wiki.r-project.org/rwiki/rhelp.php?id=diag>(1 / sqrt
<http://wiki.r-project.org/rwiki/rhelp.php?id=sqrt>(diag
<http://wiki.r-project.org/rwiki/rhelp.php?id=diag>(Rinv)))
P <- -D <http://wiki.r-project.org/rwiki/rhelp.php?i...
2000 Mar 30
2
Re: problem posting to r-help list
You are using the wrong make. Please read the instructions very carefully.
You _must_ use the cygwin make with the supplied Makefiles. As INSTALL says:
You will also
need suitable versions of at least make, sh, rm, sed, (g)awk, mkdir,
echo, cp, cut, diff, grep, egrep, pwd, expr and cat; we use those from
the cygwin distribution (http://sourceware.cygnus.com/cygwin and
several
2000 Mar 30
2
Re: problem posting to r-help list
You are using the wrong make. Please read the instructions very carefully.
You _must_ use the cygwin make with the supplied Makefiles. As INSTALL says:
You will also
need suitable versions of at least make, sh, rm, sed, (g)awk, mkdir,
echo, cp, cut, diff, grep, egrep, pwd, expr and cat; we use those from
the cygwin distribution (http://sourceware.cygnus.com/cygwin and
several
2009 Apr 22
3
Rhelp
Hello,
I am trying to run R on my Mac (OS10.5.6) and am having trouble installing
and running packages (genefilter in particular in Bioconductor)
I've tried re-installing R and it hasn't solved the issue.
Thanks,
~Nicole Slusher
2011 Feb 01
1
dotchart {graphics} 2.11.1 vs. 2.12.1 [followed up from Rhelp]
Dear List,
With the R 2.12.0 addition of table methods for points(), dotchart()
struggles with tables. I found several possible solutions, but it is
beyond my skill to decide what is "best". Here is a small example:
#############################################
x <- table(infert$education)
y <- 1:3L
dotchart(x) # error about incorrect plot type
## moving closer to the cause,
2003 Dec 01
3
search site for R (http://finzi.psych.upenn.edu)
My search site, http://finzi.psych.upenn.edu, has had several
problems recently, all my fault, for which I apologize. But it
now seems to be running reliably, on a new computer that is much
faster than the old one.
It uses htdig to permit search of the Rhelp mailing list, R
documents, R functions, and various combinations of these.
Search has several options, including Boolean search (with AND,
etc.).
Suggestions are welcome.
--
Jonathan Baron, Professor of Psychology, University of Pennsylvania
Home page: http://www.sas.upenn.edu/~baron
2007 Apr 27
1
Quadratcount() plotting in R spatstat
Hello,
I am trying to plot a quadratcount object over a ppp object in the spatstat
package. I ultimately want to get something like this
http://bg9.imslab.co.jp/Rhelp/R-2.4.0/src/library/spatstat/man/images/big_quadratcount_001.png
http://bg9.imslab.co.jp/Rhelp/R-2.4.0/src/library/spatstat/man/images/big_quadratcount_001.png
See
http://66.102.9.104/search?q=cache:zK2o-grKXgEJ:bg9.imslab.co.jp/Rhelp/R-2.4.0/src/library/spatstat/man/quadratcount.html+quadratcou...
2005 Sep 04
1
Question regarding lmer with binary response
...g glmmPQL. I played around with the control
parameters and the methods (PQl, Laplace) in lmer without any effect.
I would really appreciate if someone could have a look into my data
and tell me what's going wrong here.
My R script and data can be found at:
http://www.metaanalyse.de/tmp/rhelp.R
http://www.metaanalyse.de/tmp/rhelp.txt
TIA,
Bernd
2015 May 13
3
Alternative for wildcard gnu extension in Makevars
Dirk Eddelbuettel <edd at debian.org> schreef:
> On 13 May 2015 at 17:27, Jan van der Laan wrote:
> |
> | I have some cpp-files from another library (boost) in a subdirectory
> | in my src directory (src/boost_src). I include these using the
> | following two lines in my Makevars:
> |
> | SOURCES = $(wildcard *.cpp boost_src/*.cpp)
> | OBJECTS = $(SOURCES:.cpp=.o)
2004 Jun 09
3
Dot chart question
Running R 1.8.1 on a Windows machine
In dotchart, I would like to shrink the labels on the tick marks (that
is, the numbers) without shrinking anything else. I could not find this
in either the Rhelp archives or in ?dotchart, which recmmends cex to
avoid 'label overlap', but cex shrinks all the characters in the plot.
Is there a way to do this?
Thanks
Peter
Peter L. Flom, PhD
Assistant Director, Statistics and Data Analysis Core
Center for Drug Use and HIV Research
National Developm...
2004 May 29
1
Rhelp: Need help interpreting plots in spatstat
Hello everybody--
I have been playing with my data in spatstat, and what I'd like to
present is a basic exploratory spatial analysis. I have used the
following code, using a ppp.object called tsdspoints. The code
develops the simulations and the envelopes I want, but I don't
understand my first plot here, the [tsds.ghat.short$r,
tsds.ghat.short$raw]...I cobbled together this code
2024 Jun 16
2
slowness when I use a list comprehension
Dear RHelp-list,
?? I try to use the package comprehenr to replace a for loop by a list
comprehension.
?I wrote the code but I certainly miss something because it is very
slower compared to the for loops. May you please explain to me why the
list comprehension is slower in my case.
Here is my example....
2024 Jun 16
1
slowness when I use a list comprehension
This can be vectorized. Try
ix <- seq_along(vec2)
S_diff2 <- sapply(seq_len(N1-(N2-1)*ratio_sampling), \(j)
sum((vec1[(ix-1)*ratio_sampling+j] - vec2[ix])**2))
On Sun, Jun 16, 2024 at 11:27?AM Laurent Rhelp <laurentRHelp at free.fr> wrote:
>
> Dear RHelp-list,
>
> I try to use the package comprehenr to replace a for loop by a list
> comprehension.
>
> I wrote the code but I certainly miss something because it is very
> slower compared to the for loops. May you pleas...
2007 Jun 07
2
Display Multiple page lattice plots
Gudday,
I am generating a series of lattice contourplots that are conditioned on a variable (Year) that has 27 different levels. If I try and put them all on one plot, it ends up pretty messy and you can't really read anything, so instead I have set the layout to 3x3, thus generating three pages of nine plots each. The problem is that I can't display all these on screen at once, because
2011 Jun 16
5
Porting "unmaintained" packages to post R 2.10.0 era
Hi all,
I am trying to re-compile some "unmaintained" (it seems) packages, namely rSoNIA
and dynamicnetwork from:
http://csde.washington.edu/~skyebend/rsonia/rsoniaDemo/
These packages predates R 2.10.0 so they need to be recompile.
After split the single big file in /man in each packages into a file for each
function + some minor fix, I successfully manage to recompile and load
2000 Feb 24
1
lg2c
Dear Rhelp folks,
I think I read this in recent Rhelp, but I can't find it in the
archive. I need to know how to get lg2c in order to build the nlme
package.
I'm trying to install nlme_3.1-2.tar.gz on a Linux machine (6.1 Redhat)
under R Version 0.99.0 (February 7, 2000).
Thanks,
Jim
Jim R...
2004 Oct 18
2
multiv
What happened to multiv package? I have installed R 2.0.0 in my Mac and I
could not find this package. I see other things have been reorganized. I
have read "What's New" and I have used the search facility in the RHelp
panel to no avail.
Oscar A. Moreno
oscar.moreno at att.net
2009 Oct 26
2
exclude data for boxplot stats using mathematical operator
...ata set using the command 'read.csv'. I want to
exclude values fewer than zero in column 2 so then I tried the
following command:
boxplot.stats(x[>0,2],do.conf=FALSE)
Error: syntax error, unexpected GT, expecting ',' in "boxplot.stats(x[>"
Any help please?
Yours,
rhelp at conference.jabber.org
r 251
2012 Nov 30
1
Choleski decomposition
m <- matrix(nrow=5, ncol=5)
m <- ifelse(row(m)==col(m), 1, 0.2)
c <- chol(m) # Choleski decomposition
u <- matrix(rnorm(2000*5), ncol=5)
uc <- u %*% c
cr <- pnorm(uc)
cr <- qbinom(cr,1,0.5)
cor(cr)
I expected that the cor(cr) to be 0.2 as i set in m, but the result is
around 0.1.
Why is that? Thanks
--
View this message in context:
2006 Apr 06
5
pros and cons of "robust regression"? (i.e. rlm vs lm)
Can anyone comment or point me to a discussion of the
pros and cons of robust regressions, vs. a more
"manual" approach to trimming outliers and/or
"normalizing" data used in regression analysis?