search for: results

Displaying 20 results from an estimated 88342 matches for "results".

Did you mean: result
2018 Mar 26
2
murmurhash3 test failures on big-endian systems
Hi, The dovecot 2.3.0.1 Debian package currently fails to build on all big-endian architectures[1], due to murmurhash3 tests failing. The relevant output from e.g. s390x is: test-murmurhash3.c:22: Assert(#8) failed: memcmp(result, vectors[i].result, sizeof(result)) == 0 test-murmurhash3.c:22: Assert(#11) failed: memcmp(result, vectors[i].result, sizeof(result)) == 0 test-murmurhash3.c:22:
2009 Aug 11
2
Slicing cra**y csv files
Hello, For not too regular users of R, preparing the data is somehow a burden. Comming from iMacro in FireFox I get a badly designed csv, which I need to put into a daily R script. The data looks like that (e.g.): 22 Results,"35 Results","39 Results","2 Results","7 Results","23 Results","42 Results","36 Results","22 Results","28 Results" and R does this to it: V1 V2 V3 V4 V5 V6...
2018 Mar 26
0
murmurhash3 test failures on big-endian systems
On 26.03.2018 15:49, Apollon Oikonomopoulos wrote: > Hi, > > The dovecot 2.3.0.1 Debian package currently fails to build on all > big-endian architectures[1], due to murmurhash3 tests failing. The > relevant output from e.g. s390x is: > > test-murmurhash3.c:22: Assert(#8) failed: memcmp(result, vectors[i].result, sizeof(result)) == 0 > test-murmurhash3.c:22: Assert(#11)
2011 May 17
1
simprof test using jaccard distance
...if (!is.null(rownames(rawdata))) attr(rawdata.dist, "Labels") <- rownames(rawdata) } else rawdata.dist <- dist(rawdata, method = method.distance) if (!method.transform == "identity") rawdata <- trans(rawdata, method.transform) hclust.results <- hclust(rawdata.dist, method = method.cluster) pMatrix <- cbind(hclust.results$merge, matrix(data = NA, nrow = nrow(hclust.results$merge), ncol = 1)) simprof.results <- simprof.body(rawdata = rawdata, num.expected = num.expected, num.simulated = num.simulated, met...
2009 Feb 12
3
Looping multiple output values to dataframe
...ame length of rows as the number of .csv files to process for (i in seq_along(filenames)){ input <- read.csv(filenames[i], header=TRUE, na.strings="NA") data.frame("input") attach(input) result.A <- x[2]*y[1] result.B <- y[2]-x[1] result.C <- x[3]+y[1] results <- c(result.A, result.B, result.C) # concatenate result vectors variables[i] <- results } variables <- as.data.frame(t(as.matrix(variables))) # turn result vectors into a matrix, then transpose it and output as a data frame # add column and row names c.names <- c("ResultA"...
2007 Aug 12
5
stubbing a method that yeilds sequential results
I''ve just found myself stuck trying to rspec something so am hoping someone more knowledgable can help. I have a Connector class which has a class method ''results'' that yields results it get from a network service based on a set of attributes that I pass to it. I am wanting to yield these results from my Intermediate class up to the next ''level'' so the basic no frills set up would be this: class Intermediate def self.r...
2007 Sep 21
1
Weird data from evalJSON
...39;'<p/>''; for (x in json) { htmlSeverities+= json[x].toString() +''<p/>'';//''Severity: '' + json[x].name + '' Priority: '' + json[x].priority + ''<br/>''; } $(''ajaxResults'').innerHTML = htmlSeverities; } }); contents of ajaxResults div ----------------------------------- [{"id":20,"name":"unknown","priority":1},{"id":8,"name":"non- critical.","priority":5},{"id":17,...
2017 Nov 30
2
Help avoiding setting column type two times
Hi, I think and hope this a good place to ask for code review for a R beginners? I have made a R script which generates a dataset based on 2009 danish referendum and it does work. But I think the code could be better and I would any comments how the code can be improved. At least I would like to know how I avoid converting several of the columns to factors in the end of the code?
2006 Sep 25
4
Beginner question: select cases
...quot;London", "Rome" and "Vienna" - the location is presented through a 1 like this: London Rome Vienna q1 0 0 1 4 0 1 0 2 1 0 0 3 .... .... .... I just want to calculate the means of a variable q1. I tried following script: # calculate the mean of all locations results <- subset(results, subset== 1 ) mean(results$q1) # calculate the mean of London results <- subset(results, subset== 1 , select=c(London)) mean(results$q1) # calculate the mean of Rome results <- subset(results, subset== 1 , select=c(Rome)) mean(results$q1) # calcualate the mean of Vienna r...
2006 Apr 24
3
Store results of for loop
I have what I'm sure will turn out to be straightforward. I want to store the results of a loop for some operations from a patterned vector. For example, the following doesn't give what I would hope for ss <- c(2,3,9) results <- numeric(length(ss)) for (i in seq(along=ss)){ results[i] <- i + 1 } The following does give what I expect, but creates a vector of leng...
2005 Aug 23
10
Creating a simple sum (or: I suck at blocks!)
I''ve been hacking on this for awhile and am not even getting close. Consider the following... results = Sample.find(:all) total_counter = results.each{|result| #Add together result.counter} I just want to simply iterate through the list and sum the counter field for each row into an aggregation. I could do it in a full for loop, but is there a nice one liner I''m missing? Thanks, Jeff
2010 Jan 19
4
coping with a warning in if()
Hi, I'm sure this one is very easy.... I am trying to write a function where one of its arguments has two posible (strings) values, defaulting to one of them if none is specified. My problem is that when evaluating the function the following warning is produced: "the condition has length > 1 and only the first element will be used" I've read the help page of if() but I
2011 May 07
3
how to not match partial names
Dear friends, How do I stop partial matching of list names? e.g., x <- list(AAAA="aaaaa", BBBBB="bbbbb") is.null(x$A) #returns FALSE even though there is no element A. if(is.null(x$A)) {result <- x$BBBB} else {result <- x$A} result #is aaaa even though there is no x$A element x <- list(CCCC="aaaaa", BBBBB="bbbbb") if(is.null(x$A))
2004 Dec 31
4
Export the R object
Hi, I just have a quick question. If I got some result as the result of R, how can I export the result object? I mean, if I want to use the result object in Excel or other program in order to more specific investigation, how can I export it? If I just list the result and copy, The result is like this.. [586] "BB170029A10B06" "BB170029A20E06" First column,
1997 Dec 16
1
RedHat 5.0 Linux libc to glibc
This was posted on another list I follow and I thought it might be important if you are not already aware of the change: >Between Redhat 4.2 and Redhat 5.0, Redhat changed from libc version 5 to >glibc version 2.0 as the standard C library. This arranges its include >files differently and has resulted in MOST programs needing changes to >compile under Redhat 5.0. Paul Gilbert
2018 Mar 26
2
murmurhash3 test failures on big-endian systems
Hi Aki, On 15:55 Mon 26 Mar , Aki Tuomi wrote: > On 26.03.2018 15:49, Apollon Oikonomopoulos wrote: > > Hi, > > > > The dovecot 2.3.0.1 Debian package currently fails to build on all > > big-endian architectures[1], due to murmurhash3 tests failing. The > > relevant output from e.g. s390x is: > > > > test-murmurhash3.c:22: Assert(#8) failed:
2007 Oct 02
1
Trouble obtaining results from a loop
#Hello, #I have a question about obtaining results from a loop I have written. #Below is a sample of individual genotypes from a genetic question I am working on called "P.genotype.sample ". P.genotype.sample<-matrix(10,10,10) P.genotype.sample[,1]<-c(2,2,1,5,1,1,5,6,1,3) P.genotype.sample[,2]<-c(6,3,3,6,8,1,6,7,2,3) P.genotype....
2001 Jun 04
2
creating /etc/tinc directories in make install
Hi, I am curious why don't you guys create /etc/tinc directory, set permissions, add /etc/rc.d scripts etc. from the Makefile(s) in the source distribution ? Doing a make install and not finding an example config in /etc/tinc is kind of frustrating. Am I missing something? Maybe there is a good reason for that? Also, why is it not finding evp.h when I try to do configure? Is creating
2007 Jun 04
1
Debug meetme
Hi, I'm having complaints from some users about calls into dynamic meetme sessions failing. I'm guessing that they are dialling the wrong DTMF keys, OR that DTMF is hearing the digits entered wrong (or not hearing some). I've put debug => debug into logging.conf, and searched through the file, but I'm not sure how to debug. EG, Jun 1 14:32:33 DEBUG[14820] pbx.c: Function
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...t;;; + esac +done + +isoname=$(basename $isofile) +isofile="$(cd `dirname $isofile`; pwd)/${isoname}" + +if ! [ -s "${isofile}" ]; then + die "Missing or invalid file: ${isofile}" +fi + +shift $(($OPTIND - 1)) + +set +u +if [ $# -gt 0 -a -n "$1" ]; then RESULTS=$1; else RESULTS=autotest.log; fi +set -u + +result_file=$WORKDIR/results.log +debug "result_file=${result_file}" + +log "Logging results to file: ${RESULTS}" +{ + setup_for_testing + + log "Begin Testing: ${isoname}" + log "Tests: ${tests}" + log...