Displaying 10 results from an estimated 10 matches for "boninc".
Did you mean:
boinc
2007 Jul 25
1
Rgraphviz and R 2.5.1 entry point Rf_allocString could not be located
...ws (XP SP2)
system with error popup "The procedure entry point Rf_allocString could not
be located in the dynamic link library R.dll".
Thanks in advance for any suggestion in solving the error.
My D. Coyne
Imagination is more important than knowledge... (Albert Einstein)
mcoyne@boninc.com
BioInformatics Enthusiast
Office: 301-865-0243
Cell: 301-399-6351
[[alternative HTML version deleted]]
2008 Jan 13
2
Retrieve only part of a matrix
Hi All,
I'm new with R; this is a basic question. I was given a matrix I of (nrow,
ncol), I would like to create another matrix A with some data in the matrix
I, say [1,4] (row 1, column 4) to [271,19000] (row 271, column 19000). How
do I do this? Please help. Thank you very much.
--mc
[[alternative HTML version deleted]]
2008 Jan 15
2
In chisq.test(x) : Chi-squared approximation may be incorrect
Hello,
I received the following warning when running chi-square;
n Is there a way to catch the 'error' code of 'warning' after run
chisq.test(x)?
n What does this error mean?
Thank you for your help.
[[alternative HTML version deleted]]
2008 Jan 13
4
For Loop performance
Hello,
Newbie question and hope you can help .
I have two vector V1 and V2, where length(V2) = length of (V1) * 2;
length(V1) ~ 16,000.
For each member in V1, I need to compare 2 element of V2 for equality
i.e.
for (I in 1:length (V1)) {
if ( v2[i] == v1[i] & v2[i+1]==v1[i] ){
statement_1
statement_2
.
}
}
This for-loop is too slow
2008 Feb 02
2
Ignore error t.test in a loop
Hi,
I place a t.test in a loop and would like to continue to process the loop
even when t.test encounter error. How do I do that? For example, in one
iteration, the data is completely constant and t.test gives error, the
entire program terminates. I would like to write the information out to a
file, and the loop should continue.
Thanks
My D. Coyne
[[alternative HTML version
2008 Mar 02
1
Could not install aroma.affymetrix
I don't know if this is the correct forum to ask the following question;
however, when I search the aroma.affymetrix discussion group, it suggested
that I should posted the question to r-help. Here it goes.
I followed the instructions on aroma.affymetrix trying to install the
packages; following are the steps:
> install.packages(c("R.oo", "R.utils"),
2008 Feb 13
2
How to handle Which on two matrices that do not have same number of rows
R-newbie question
I have 2 matrices
(a) P1 has only one column of 32K rows
(b) PC has 2 column {P, C} of 3200 rows
Every values in P1 matches with a value in PC[,p] (column p). I would like
to use Which to search for all value in P1 that matchex PC[,p] and get the
PC[,c]. However because P1 and PC does not have the same number of rows, I
got lots of 'NA'. Thanks for your
2008 Jan 15
1
Retrieve results from chisq.test programmatically
Hello,
I would like to run a series of chisq.test() and store results (x-square,
df, p-value) in a matrix for further analysis, but don't know how to do
such. Currently I run the command line for each set of data at a time and
it is time consuming.
Thank you for your help.
--My Coyne
[[alternative HTML version deleted]]
2008 Jan 15
1
Newbie Question -- Remove entire column in a matrix
I'm ordering "The R Book" and hope to learn a lot more about R. In a
meantime, I have a matrix of digits and I would like to look for a column
that contains zeroes and remove the entire column from the matrix. I can
write a piece of R code to do that (and it works); however, I think the
R-experts have more tricks to do such a 'simple' thing.
Many thanks in advance.
2008 Jan 23
0
samr error
I'm running samr (Two class unpaired), but keep getting the following error:
perm= 1
Error in if (logged2) { : argument is of length zero
<code>
library (impute)
library (samr)
data = list (x=dat, y=y, geneid = matrix(twoUnpaired.data[,1],ncol=1),
genenames = matrix(twoUnpaired.data[,2], ncol=1))
samr.obj <- samr (data, resp.type="Two class unpaired", nperms=100)