Displaying 3 results from an estimated 3 matches for "allresult".
Did you mean:
allresults
2009 Jun 09
4
Help with if statements
Hi
I am trying to create a column in a data frame which gives a sigificane score from 0-7. It should read values from 7 different colums and add 1 to the counter if the value is <=0.05. I get an error message saying
Error in if (ALLRESULTS[i, 16] <= 0.05) significance_count = significance_count + :
missing value where TRUE/FALSE needed
The script is included below
it works if i convert the NA values to zero but this is not appropriate as it includes the zero as significant.
ANY SUGGESTIONS
#SCRIPT STARTS
for (i in 1:le...
2011 Jul 19
1
list.files recursively to find files in a specific way...
...---------------------file1.txt
-----------------------file2.txt
---------------B
-----------------------file1.txt
-----------------------file2.txt
I'd love to list all file2.txt from all subdirectories "B"s but not from
"A"s, how to do that?
I tried the following two
a) allResults <- list.files(path = routeStr, pattern = "file2.txt",
all.files = TRUE, full.names = TRUE, recursive = TRUE);
gives me 200 files in allResults, which is wrong. There should be only 100
files in allResults.
b) allResults <- list.files(path = routeStr, pattern = "B/file2.txt&qu...
2012 Oct 30
2
Java Exception error while reading large data in R from DB using RJDBC.
Dear List,
Java Exception error while reading large data in R from DB using RJDBC.
I am trying to read large data from DB table(Vectorwise), using RJDBC
connection.
I have tested the connection with small size data and was able to fetch DB
tables using same connection(conn as in my code).
Please suggest where am i going wrong or alternate option to solve such
issues while reading large DB