search for: eurac

Displaying 9 results from an estimated 9 matches for "eurac".

Did you mean: furac
2016 Apr 05
3
Problem with <= (less than or equal): not giving the expected result
...eck.equal <- function(x, y) { check.vector <- as.logical(unlist(lapply(x, all.equal, y))) check.vector[is.na<http://is.na/>(check.vector)] <- FALSE return(check.vector) } See: ?all.equal Hth, Adrian On Tue, Apr 5, 2016 at 2:34 PM, Rainer Johannes <Johannes.Rainer at eurac.edu<mailto:Johannes.Rainer at eurac.edu>> wrote: Dear All, I have the following problem: I have a function in which I check if the difference between values is smaller or equal to a certain threshold. I however realized that I might get there some unexpected results: > abs(1 - 0.95)...
2016 Apr 05
0
Problem with <= (less than or equal): not giving the expected result
...nald Aylmer Fisher The plural of anecdote is not data. ~ Roger Brinner The combination of some data and an aching desire for an answer does not ensure that a reasonable answer can be extracted from a given body of data. ~ John Tukey 2016-04-05 14:46 GMT+02:00 Rainer Johannes <Johannes.Rainer at eurac.edu>: > Thanks Adrian and Thierry (from the previous answer). > > I was aware of the all.equal function, but there is nothing similar for <= > (e.g. all.smallerEqual)? > > cheers, jo > > On 05 Apr 2016, at 14:31, Adrian Du?a <dusa.adrian at unibuc.ro<mailto: &gt...
2016 Apr 05
1
Problem with <= (less than or equal): not giving the expected result
...nald Aylmer Fisher The plural of anecdote is not data. ~ Roger Brinner The combination of some data and an aching desire for an answer does not ensure that a reasonable answer can be extracted from a given body of data. ~ John Tukey 2016-04-05 14:46 GMT+02:00 Rainer Johannes <Johannes.Rainer at eurac.edu<mailto:Johannes.Rainer at eurac.edu>>: Thanks Adrian and Thierry (from the previous answer). I was aware of the all.equal function, but there is nothing similar for <= (e.g. all.smallerEqual)? cheers, jo On 05 Apr 2016, at 14:31, Adrian Du?a <dusa.adrian at unibuc.ro<mailto...
2016 Apr 05
0
Problem with <= (less than or equal): not giving the expected result
...as with vectors): check.equal <- function(x, y) { check.vector <- as.logical(unlist(lapply(x, all.equal, y))) check.vector[is.na(check.vector)] <- FALSE return(check.vector) } See: ?all.equal Hth, Adrian On Tue, Apr 5, 2016 at 2:34 PM, Rainer Johannes <Johannes.Rainer at eurac.edu> wrote: > Dear All, > > I have the following problem: > > I have a function in which I check if the difference between values is > smaller or equal to a certain threshold. I however realized that I might > get there some unexpected results: > > > abs(1 - 0.95)...
2016 Apr 05
5
Problem with <= (less than or equal): not giving the expected result
Dear All, I have the following problem: I have a function in which I check if the difference between values is smaller or equal to a certain threshold. I however realized that I might get there some unexpected results: > abs(1 - 0.95) >= 0.05 [1] TRUE ## So that?s fine, but: > abs(1 - 0.95) <= 0.05 [1] FALSE Apparently, abs(1 - 0.95) is not equal to 0.05, which I find however quite
2016 Apr 06
0
Problem with <= (less than or equal): not giving the expected result
> Apparently, abs(1 - 0.95) is not equal to 0.05, which I find however quite > disturbing. It's normal.* See R FAQ 7.31 in the html help system. S Ellison *... and common to all computers that use binary. ******************************************************************* This email and any attachments are confidential. Any use, copying or disclosure other than by the intended
2014 Jan 21
0
CFP: 5th Workshop on Scientific Cloud Computing (ScienceCloud) @ ACM HPDC 2014
...diana University - Neil Chue Hong, University of Edinburgh - Shantenu Jha, Rutgers - Carl Kesselman, University of Southern California - Thilo Kielmann, Vrije University - Shiyong Lu, Wayne State University - Wei Lu, Microsoft Research - David Martin, Argonne National Laboratory - Gabriel Mateescu, EURAC Research, Italy - Paolo Missier, University of Manchester - Ruben Montero, Universidad Complutense de Madrid - Reagan Moore, University of North Carolina - Pasquale Pagano, ISTI - Beth Plale, Indiana University - Omer Rana, Cardiff University - Matei Ripeanu, University of British Columbia - Josh S...
2014 Jan 21
0
CFP: 5th Workshop on Scientific Cloud Computing (ScienceCloud) @ ACM HPDC 2014
...diana University - Neil Chue Hong, University of Edinburgh - Shantenu Jha, Rutgers - Carl Kesselman, University of Southern California - Thilo Kielmann, Vrije University - Shiyong Lu, Wayne State University - Wei Lu, Microsoft Research - David Martin, Argonne National Laboratory - Gabriel Mateescu, EURAC Research, Italy - Paolo Missier, University of Manchester - Ruben Montero, Universidad Complutense de Madrid - Reagan Moore, University of North Carolina - Pasquale Pagano, ISTI - Beth Plale, Indiana University - Omer Rana, Cardiff University - Matei Ripeanu, University of British Columbia - Josh S...
2014 Nov 27
0
p.adjust on a vector including NA values
dear all, I recently came across the following issue and I was not sure whether it is intentionally or not: using p.adjust to adjust p-values for multiple hypothesis testing using the method from Benjamini and Hochberg removes all NA values from the input vector and does not account for them in the adjustment, i.e. in a vector of 23 p-values with 20 of them being NA it adjusts the 3 non-NA