Displaying 20 results from an estimated 3000 matches similar to: "Custom CDF Entrez ID for MacOS"
2004 Feb 18
2
Area between CDFs
Dear List:
I am trying to find the area between two ECDFs. I am examining the gap in performance between two groups, males and females on a student achievement test in math, which is a continuous metric.
I start by creating a subset of the dataframe
male<-subset(datafile, female="Male")
female<-subset(datafile, female="Female")
I then plot the two CDFs via
2009 Dec 28
2
[BioC] make.cdf.package: Error: cannot allocate vector of size 1 Kb
My machine has 8GB memory. I had quit all other programs that might
take a lot of memory when I try the script (before I post the first
message in this thread). The cdf file is of only 741 MB. It is strange
to me to see the error.
On Mon, Dec 28, 2009 at 2:38 AM, Wolfgang Huber <whuber at embl.de> wrote:
> Dear Peng Yu
>
> how big is the RAM of your computer? You could try with
2011 Jun 02
4
[Plea to the R Gods] Theoretical and Empirical CDFs
http://r.789695.n4.nabble.com/file/n3567636/ecdfs.jpg ecdfs.jpg
http://r.789695.n4.nabble.com/file/n3567636/ecdf_curve.gif ecdf_curve.gif
Hello,
I have generated a plot of two empirical CDFs (attachment 1). As a result,
they are stepwise when plotted. The following code was used:
> plot(ecdf(mut), do.points=FALSE, verticals=TRUE, xlim=range(mut, non),
> col="red")
>
2011 Aug 22
2
CDFs
Hello all,
I have two columns of numbers. I would like to do the following:
(1) Plot both cdfs, F1 and F2 on the same graph.
(2) Find smoothed approximations of F1 and F2 lets call them F1hat and F2hat
(3) Find values for F1hat when we substitue a value of x in it.
(4) Find the corresponding densities of the cdfs.
Any ideas?
--
Thanks,
Jim.
[[alternative HTML version deleted]]
2007 Jul 12
3
multiple plots in a graph
Hi,
I have to generate 10 cdfs in a graph. I need to compare the cdf's
nature by plotting ten cdfs in a graph. Thus, I need multiple plots in a
graph.
I would appreciate if you could give some solution to the problem asap.
Thanking you,
Sincerely,
Ajay.
--
Ajay Singh
Research Scientist,
SOM, IIT-Bombay, Powai,
MUMBAI-400076, MH (INDIA).
2013 Mar 03
2
Kolmogorov-Smirnov: calculate p value given as input the test statistic
Dear all,
I calculate the test statistic for the KS test outside R, and wish to use R
only to calculate the corresponding p-value.
Is there a way for doing this? (as far as I see, ks.test() requires raw
data as input). Alternatively, is there a way to provide the ks.test() the
two CDFs (two samples test) rather than the (x, y) data vectors?
Thanks in advance,
Rani
2009 Aug 03
1
Help with Ecdf function
Dear R users,
I'm using Ecdf (Hmisc library) to plot four cdf in a same graphic. In this
graphic I also plot the 0.99 quantile for these cdf. I successfully plot
cdfs using different types of line to distinguish them, but I can't
determine the type of lines showing 0.99 quantile.
Is there a way to assign different line types for quantile lines in Ecdf
plot?
Best regards,
--
Mateus da
2009 Mar 17
1
Need to build package for Affy HT HG-U133+ PM arrays
I would like to build a package for the HT HG-U133+ PM arrays from affy,
but I can't find any good documentation on how to go about it. Naively
using makecdfenv's make.cdf.package() causes R to seg-fault.
I'm unfamiliar with the CDF format as such, but I'm guessing that it's
changed somewhat because the PM arrays no longer have P/A and mismatches.
I'm looking to build
2004 Jun 15
6
mode data=journal in ext3. Is it safe to use?
Hello
I try again.
Can anybody of you acknowledge or not if mode data=journal in ext3 is
safe to use in Linux kernel 2.6.x?
Wee need to have a very consistent and integrity for our filesystem, and
it would then be desired to journal both data and metadata.
But if this mode can corrupt the filesystem as both Phil White and
Nicolas Kowalski has experienced, it may be more advised to use mode
2006 Oct 12
1
getMethods() not finding all methods
Running R2.4.0 on Apple Mac OS X 10.4.8,
in Emacs ESS mode, and also R.app.
In an attempt to learn a bit more about
a particular method (geneNames in package affy)
I invoked
getMethods("geneNames")
which produced geneNames methods, but not the
one in affy (output below).
I had to know the signature (AffyBatch) in order
to find the method
> getMethod("geneNames",
2008 Dec 15
4
Is = now the same as <- in assigning values
I?m a PhD student at the University of Warsaw, and have started using R.
In many books they specify to use <- instead of = when assigning
values, and this is also mentioned in older posts on the R website.
However, it seams to me that some update has occured, becuase I
continously get the same result wether I use <- or =.
I would be extremely helpful for any answer to this.
= seams more
1999 Dec 09
1
nlm() problem or MLE problem?
I am trying to do a MLE fit of the weibull to some data, which I attach.
fitweibull<-function()
{
rt<-scan("r/rt/data2/triam1.dat")
rt<-sort(rt)
plot(rt,ppoints(rt))
a<-9
b<-.27
fn<-function(p) -sum( log(dweibull(rt,p[1],p[2])) )
cat("starting -log like=",fn(c(a,b)),"\n")
out<-nlm(fn,p=c(a,b), hessian=TRUE)
2004 Jun 07
1
mode data=journal. Is it safe to use?
Hello
I can see several postings on this mailing-list that people have problem
with mounting ext3 partition with mode data=journal.
See URL's:
https://www.redhat.com/archives/ext3-users/2004-March/msg00000.html
https://www.redhat.com/archives/ext3-users/2004-March/msg00050.html
We are going to use ext3 on a Compact Flash disk in true IDE mode. We
need this filesystem to be as safe and
2007 Apr 28
1
normalizing affy data caused an error
Hi all,
I tried to do normalization of affymetrix data with bioconductor on a
Linux server. When I read in the cel files all seemed ok. But the next
step caused an error. With Win XP all works fine. Did anyone experience
similar problems?
Thanks,
Thomas
> PI <- ReadAffy()
> PI
AffyBatch object
size of arrays=712x712 features (14 kb)
cdf=ATH1-121501 (??? affyids)
number of
2009 Sep 20
3
plotting least-squares regression against x-axis
Hi,
I want to plot the residuals of a least-squares regression.
plot(lm(y~x), which=1)
does this, but it plots the y-axis of my data on the x-axis of the
residuals plot. That is, it plots the residual for each y-value in the
data. Can I instead use the x-axis of my data as the x-axis of the
residuals plot, showing the residual for a given x?
Thanks!
Jason Priem
University of North
2020 May 26
4
sshd/winbind wrong GID redux
Hi, I'm in the position of having to support a fix for a bad
interaction between sshd and winbind/Active Directory. It's solved by a
small patch against openssh, but it would be nice to have the solution
generally available.
The problem has previously been described on this list by Andreas
Schneider, see:
https://lists.mindrot.org/pipermail/openssh-unix-dev/2019-February/037556.html
2010 Sep 20
1
Please help with this error - new to
I am getting the following error in my script. I am very very new to R and
have obtained this script from another person.
#read file in (dummy data)
starburst.plot<-function(affy.fold, affy.FDR)(ifelse( ((affy.fold) >=0),
-1*log10(affy.FDR), 1*log10(affy.FDR)))
starburst.plot<-function(meth.fold, meth.FDR)(ifelse( ((meth.fold) >=0),
-1*log10(meth.FDR), 1*log10(affy.FDR)))
At my next
2008 May 07
2
Solaris / OpenSolaris
I'm having some difficulties pxe booting Solaris. So far I have tried
the mboot.c32, and the pxegrub shipped with Solaris. At first I had some
problems with blksize, but this disapeared when I changed from atftpd to
tftpd-hpa. The point at which I'm stuck now is, the kernel and
x86.microroot/x86.miniroot is loaded but then VMWare crashes. I might
try with real hardware, but I thought
2004 May 14
2
Help needed with bri-stuff.0.02. slw91 k2.6.5
Running slackware 9.1 with compiled kernel from source 2.6.5 running ok.
I have 2 HFC-S chipbased Billion Bipac PCI ISDN BRI cards installed in PC.
Would like to use one card as in TE and one in NT mode.
System works fine running pbx4linux.But want to use SIP functionality, so I
would like to try out the Asterisk.
Trying to install the bri-stuff.0.0.2.tar.gz (May 10 2004)package, getting
the
1996 Nov 19
0
Yet another attempt at /tmp spoof protection
-----BEGIN PGP SIGNED MESSAGE-----
Hi all,
Prompted by Mark''s discussion of the transname patch I''ve put together
an experimental patch to the Linux nfsd that supports something I''ve named
CDFs for lack of a more appropriate name. They''re not real CDFs, and in
particular, they won''t let you manage stuff like shared /etc directories
for diskless