Displaying 20 results from an estimated 52 matches for "nocv".
Did you mean:
nov
2002 Aug 13
2
Misalignment of <NA> in rownames (PR#1905)
...his solves the problem:
R-patched> x
A <NA> C D
a 1 4 7 10
b 2 5 8 11
c 3 6 9 12
-----------------------------------------------------------------------------
References:
Don MacQueen reported a similar problem in the body of the matrix on 5/1/02:
http://www.r-project.org/nocvs/mail/r-help/2002/3455.html
but this was fixed in R-1.5.1.
Derek Yi <Derek.Yi@fmr.com> first noted the rownames problem on 8/1/02 in
http://www.r-project.org/nocvs/mail/r-help/2002/6366.html
and Brian D. Ripley <ripley@stats.ox.ac.uk> replied on 8/1/02 in
http://www.r-project.org/n...
2004 Mar 19
3
Incomplete Gamma Functions and GammaDistribution Doc errata.
...name with "rate" and
the label with r or nu or theta.
2) Using existing functions to build the igamma(\alpha,\beta):
-------------------------------------------------------------
The incomplete gamma has been mentioned in two previous emails that I
could find:
http://www.r-project.org/nocvs/mail/r-help/2000/1006.html
and
http://www.r-project.org/nocvs/mail/r-help/2000/3618.html
both of which suggest that the upper incomplete gamma can be obtained
using the pgamma() function.
Is Prof. Ripley's message (the first above) saying that
upperIncompletegamma(x,\rate) = pgamma(x,\rat...
2003 Feb 20
2
subset with NA
...Max. NA's
1 2 3 3 4 5 1211
Querying for
subset(temp, tuna %in% "NA", select....
subset(temp, tuna == NA, select....
subset(temp, tuna == as.character(NA), select....
All yield an empty data frame.
An R-help post
(http://www.r-project.org/nocvs/mail/r-help/2002/3645.html) suggested
looking at http://developer.r-project.org/150update.txt, which I did
but I'm confused as to how to accurately query for an NA string.
--
Rob Schick
Ecologist
NOAA Fisheries
Santa Cruz Lab
110 Shaffer Road
Santa Cruz, CA 95060
Phone: 831.420.3960
2001 Feb 07
2
Re: Writing graphics code (was: [R] get vector data from contour)
I submitted a message to r-help this morning that really belongs in
r-devel; here's its URL in the archive:
<http://www.r-project.org/nocvs/mail/r-help/2001/0693.html>.
In summary, I suggest that R graphics objects should be accessible and
modifiable, but it raises some problems if you want to do it without
pointers.
Duncan Murdoch
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing lis...
2001 Apr 16
1
Help with plotting error bars in R
Hi,
I'm sorry to send email to everyone on this list, but I have a simple question
which is bothering me and I can't seem to figure out the correct answer. I
just downloaded R and I'm trying to reproduce some simple analysis I've done
on other packages. In particular, if I have a vector of experimental values
and a vector of their uncertainties, is there a way to plot the
2002 Nov 21
4
Mixing text and graphics in PDF
Is there an easy way to "sink" text output to a pdf file using the pdf()
device?
Here's an email that describes setting up empty graphics plots and then
using the "text" command to put text on page:
http://www.r-project.org/nocvs/mail/r-help/2002/5598.html
I'm just looking for something a little more polished -- automatic page
breaks, line wrapping, etc.
Kevin Wright, Research Scientist
Pioneer Hi-Bred Int'l, x4054.
http://www.DuPont.com/corp/email_disclaimer.html
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2001 Nov 29
2
plotting (a) confidence intervals (b) standard error
Hi all,
I'm building a plot of the values in tmeant (below) against positions 1 to
5, using matplot.
tmeant looks like this:
case1 case2
pos1 861.8466 818.5909
pos2 961.2841 976.3466
pos3 878.6080 1262.8523
pos4 950.8011 1129.6080
pos5 968.1080 1063.3920
I also have lower (object tl) and upper (object tu) bounds on the
confidence intervals as follows:
tl:
pos1
2002 Oct 22
1
axis
I am using R 1.6.0 on Windows 2000 Professional. I am trying to rotate
x-axis
labels using "srt = 45, adj = 1", but nothing is happening. It is like the
axis
command is ignoring the "srt" and "adj" arguments.
Thanks,
Mike Lane
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2005 Feb 08
1
Drawing maps of UK
...finally) is draw some maps of data that I
have which is organised by postcode (sort of equivalent of US Zip code
for those who don't know). I think this may be quite ambitious, but I
wanted to see just how far I could get with R.
I have seen examples on the list (e.g.
http://www.r-project.org/nocvs/mail/r-help/2000/4480.html) giving
examples of drawing maps of the UK at county level
(map("uk",fill=T,color=pop.colour)) but this didn't work on my system -
as I don't seem to have the correct data for the UK.
Thanks in advance for your help
Mick
2002 Nov 15
1
Plotting in the margin
Hi,
I would like to place a line (tilted at an angle) in the margin of an R
plot. Is there any way to place such an annotation outside the plotting
area?
As an alternative, being able to plot a rotated character (the pipe, |) in
the margin would be sufficient. The problem is that mtext doesn't work
with the srt option.
As a further alternative, if I could put a legend in the margin, I
2001 Apr 30
1
Some loglog density plot
Dear all,
A looong time ago, Witold Eryk Wolski asked here why there wasn't a
log="xy" parameter to the hist() function
<URL:http://www.R-project.org/nocvs/mail/r-help/2001/0267.html>, and
Prof. Ripley responded that a loglog histogram does not make much sense,
and that one should use a better density estimate if one seeks to plot
log density.
I understand the point and I hope you will forgive my ignorance:
What alternatives do I have in R?
(In a...
2002 Aug 01
1
Non-alignment of <NA> in rownames
Hello everyone,
Apologies in advance if you have received this multiple times!
On a thread similar to that posted by Don MacQueen
(http://www.r-project.org/nocvs/mail/r-help/2002/3455.html): is there any
way to nicely format NA's when listed as rownames? When NA's are part of
rownames, the alignment is thrown off:
> z <- matrix(c(100, 200, 300))
> z
[,1]
[1,] 100
[2,] 200
[3,] 300
> rownames(z) <- c("x", "y&q...
2001 Dec 10
2
distributions w. skewness & kurtosis
Is there some reasonable way to generate random data from a
distribution that has some degree of skewness and/or kurtosis, but
would otherwise be normal?
thanks,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: greiff.vcf
Type: text/x-vcard
Size: 398 bytes
Desc: Card for Warren R. Greiff
Url :
2005 Nov 21
2
Multinomial Nested Logit package in R?
...g
fuzzy matching
Possibilities that seem unclear and/or not very promising:
1. It is my understanding that the multinom function in the nnet
package does NOT do nested models.
2. The MNP (multinomial probit) package is close, but I want a logit,
not probit, model.
3. http://www.r-project.org/nocvs/mail/r-help/2002/4394.html
On Wed, 29 May 2002, Vumani Dlamini wrote:
> > Has anyone implemented the conditional logit and/or the nested
> logit model
> > in R?
>
> Conditional logistic regression is clogit() in the survival package.
But the survival package didn't seem...
2002 Oct 31
2
Tables in graphics window
Hello, I would like to include a table (of rax data, not summary statistics -
in case this makes any difference) alongside a plot. I know how to use
'layout' to divide my page into sections, but is it possible to put a table
into one of these?
Thanks!
Tanya Murphy
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2001 Jan 09
2
R installation problems...
Dear all
I already posted this problem to r-help in mid-decembre; see
http://www.r-project.org/nocvs/mail/r-help/2000/3876.html
But, up to now it did not manage to get R properly working.
I reinstalled R-1.0.0, R-1.1.1 and R-1.2.0 from scratch, and
always run into the same error message:
...
[Previously saved workspace restored]
now dyn.load(/usr/R/lib/R/library/ctest/libs/ctest.so).....
2002 Jan 25
4
How to add error bars to plot(x,y)in R?
Dear R Experts,
Is there a way in R to add an error bar (say in the y direction) for each data point?
Thanks
Ming Chow
--
__________________________________________________________________
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help",
2002 Jan 25
4
How to add error bars to plot(x,y)in R?
Dear R Experts,
Is there a way in R to add an error bar (say in the y direction) for each data point?
Thanks
Ming Chow
--
__________________________________________________________________
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help",
2003 Oct 07
1
(PR#4450)
...tion(i) det(m)); plot.ts(y) # may need repetition
> var(y)
[1] 3.940272
The plot shows that the sign of det alternates indeterministically (at least for some m generated this way, like the m attached in the m.RData file).
I note that a similar problem was reported in http://www.r-project.org/nocvs/mail/r-devel/2002/0139.html but I couldn't find a report of this particular problem.
I would suggest to make det compatible with complex matrices, or at least give a warning.
Regards,
Raoul
--please do not edit the information below--
Version:
platform = i386-pc-mingw32
arch = i386
os...
2001 Apr 28
1
R 1.2.3 for MacOS/X available
...l/lib, except for the R driver which
goes to /usr/local/bin. The R-devel tarball contains most of the
contributed R packages.
You can find this distribution on Jan's page :
http://www.stat.ucla.edu/~deleeuw/R
For more information read the following r-announce msg
http://www.r-project.org/nocvs/mail/r-announce/latest/0026.html
Stefano
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: text/enriched
Size: 2429 bytes
Desc: not available
URL: <https://stat.ethz.ch/pipermail/r-announce/attachments/20010428/515ce113/attachment.bin>