search for: exp2

Displaying 20 results from an estimated 79 matches for "exp2".

Did you mean: exp
2011 May 21
0
Problem with ANOVA repeated measures: "Error() model is singular"
...XP1 M 51.6770 subject6 gravel EXP1 M 42.1760 subject7 gravel EXP1 M 56.1110 subject8 gravel EXP1 M 54.9500 subject9 gravel EXP1 M 62.6920 subject10 gravel EXP1 M 50.7270 subject1 gravel EXP2 M 70.9270 subject2 gravel EXP2 M 61.3200 subject3 gravel EXP2 M 70.2930 subject4 gravel EXP2 M 49.9880 subject5 gravel EXP2 M 69.1670 subject6 gravel EXP2 M 62.2700 subject7 gravel EXP2...
2011 Aug 30
0
[LLVMdev] exp2 and log2 intrinsic expansion
I'm having a problem when generating the following LLVM intrinsics: @llvm.exp2.f32 @llvm.log2.f32 On linux, these are available on as part of standard math libraries, the code geenrator expands them into library calls, and the linker happily finds them. However, on Windows and OSX, where no implementation exists, instead of throwing a runtime error, we get a call to a funct...
2020 Oct 28
4
Targeting old glibc
...an old glibc? I have a machine which is up to date (glibc 2.32 and clang+lld 10.0.1). So far I've been able to target older glibc by having a C file containing: __asm__(".symver powf,powf at GLIBC_2.2.5"); __asm__(".symver expf,expf at GLIBC_2.2.5"); __asm__(".symver exp2f,exp2f at GLIBC_2.2.5"); __asm__(".symver log2f,log2f at GLIBC_2.2.5"); __asm__(".symver logf,logf at GLIBC_2.2.5"); __asm__(".symver log,log at GLIBC_2.2.5"); __asm__(".symver log2,log2 at GLIBC_2.2.5"); __asm__(".symver exp,exp at GLIBC_2.2.5&quo...
2012 Feb 20
2
overlay of two sets of boxplots
Hello, I am new to R and currently have the following problem: I have successfully loaded my data in R which consists of two numeric columns (LI_F and female) and one character column (Strain). So far I can plot two different set of boxplots for each of the numeric columns plotted by the groups of the character column and the commands look like that: boxplot(LI_F~Strain, ylab="LI_F",
2008 Apr 09
1
If statements for vectors
...es a list of 0s and expression values below the threshold value. However, now I need to remove the 0s. I thought that this would be relatively trivial but it appears it isn't!!! The dimension of the list (with the 0s and values) is 506994. So I wrote the following: for(i in 1:506994) { if(exp2[i] > 0) { exp3 <- append(1,exp2[i]) } return(exp3) } where exp2 is the vector of 0s and threshold values. However I have since discovered that 'if' does not work on vectors. The suggestions I have seen on this forum include 'ifelse' which I don't believe to be relevant i...
2020 Oct 28
2
Targeting old glibc
...libc 2.32 and clang+lld 10.0.1). > > > >So far I've been able to target older glibc by having a C file containing: > > > >__asm__(".symver powf,powf at GLIBC_2.2.5"); > >__asm__(".symver expf,expf at GLIBC_2.2.5"); > >__asm__(".symver exp2f,exp2f at GLIBC_2.2.5"); > >__asm__(".symver log2f,log2f at GLIBC_2.2.5"); > >__asm__(".symver logf,logf at GLIBC_2.2.5"); > > > >__asm__(".symver log,log at GLIBC_2.2.5"); > >__asm__(".symver log2,log2 at GLIBC_2.2.5"); &gt...
2011 May 31
2
Files are duplicated after renaming (with glusterfs+zfs-fuse)
...I installed glusterfs (version 3.1.3) with zfs-fuse (0.6.9) as the underlying filesystem. After renaming a file, I found the file duplicated. Following is my test scenario. root at ubuntu:/# zpool create tank /dev/sdb root at ubuntu:/# gluster volume create test-volume ubuntu:/tank/exp1 ubuntu:/exp2 root at ubuntu:/# gluster volume start test-volume root at ubuntu:/# mount -t glusterfs ubuntu:/test-volume /mnt root at ubuntu:/# cd /mnt root at ubuntu:/mnt# touch test.cc root at ubuntu:/mnt# mv test.cc test1.cc root at ubuntu:/mnt# ll total 7 drwxr-xr-x 2 root root 3 2011-05-31 11:38 ./...
2006 Feb 23
2
Strange p-level for the fixed effect with lme function
...t-value p-value (Intercept) 6.430962 0.03843484 1379 167.32118 0.0000 F2 -0.028028 0.00445667 1379 -6.28896 0.0000 MI -0.004058 0.00187358 1379 -2.16612 0.0305 =========================================================== (B) lme(RT ~ F2 + MI, random =~ 1 | Subject, data = exp2) ANOVA: numDF denDF F-value p-value (Intercept) 1 659 150170.71 <.0001 F2 1 659 17.28 <.0001 MI 1 659 13.43 3e-04 Fixed effects: RT ~ F2 + MI Value Std.Error DF t-value p-value (Intercept) 6.608252 0.05100954...
2006 May 28
1
problems while correlating values
...s of the data are blank ( in the sense that there is no value available for the particular experiment). When i try to open the file in R. I get an warning message. The specific warning message i get is {Warning message: NAs introduced by coercion } My data more or less looks like this - exp1 exp2 exp3 exp4 exp5 exp6 fish 20 10 40 30 - 10 duck 15 - 20 - - - swan 10 5 7 12 15 - kiwi 12 10 30 15 16 12 goat 18 10 20 - 10 - {where '-' is blank spaces} when I correlate this data using this > round(cor(person.data,use="pairwise.complete.obs")) correlation is done between...
2013 Jan 18
1
Nesting fixed factors in lme4 package
...d factors - A (whole plot factor) and B (subplot factor), both with two levels. I want to do GLMM as I also want to include different plots as a random factor. But I am interested on the effect of A a B and their interaction on the response variable. I tried this:glmer(response~A*B+(A/B)+(1|C),data=Exp2,family=poisson but it gives the same output as if I removed (A/B) all together or used (A:B) instead thus the output is the same as: glmer(response~A*B+(1|C),data=Exp2,family=poisson anyone can help with how I define this nesting, so that data are analysed correctly given my split-plot design? than...
2017 Oct 10
2
Power test binominal GLM model
...enchmark 0 1 benchmark - tran_during_flag= redemption yes/no (1/0) - enviados= counter variables, all 1's - bono_recibido= benchmark(control group) or test groups (two type of test groups) The model used has been glm(TRAN_DURING_CAMP_FLG~bono_recibido,exp2,family="binomial") Estimate Std. Error z value Pr(>|z|)(Intercept) -1.4924117 0.01372190 -108.761315 0.000000e+00 bono_recibidoBONO3EUROS -0.8727739 0.09931119 -8.788274 1.518758e-18 bono_recibidoBONO6EUROS 0.1069435 0.02043840 5.232480...
2006 Oct 18
6
new R-user needs help
...7 24 25 31 27 29 3 b 8 28 25 26 32 28 3 c 9 21 31 28 23 29 where each name a,b and c is repeated three times. Now I want to calculate the the averages of a,b and c over the three experiments for each x. For example for x1 I want to calculate the average of a like [a(from exp1) + a(exp2)+ a(exp3)]/3= (23+28+24)/3 How can I do that ? Thanks for your help, Regards, Antonia
2009 Jun 08
2
ridiculous behaviour printing to eps: labels all messed up!
OK, this is really weird! here's an example code: t1<-c(1,2,3,4) t2<-c(4,2,4,2) plot(t1~t2, xlab="exp1", ylab="exp2") dev.copy2eps(file="test.eps") that all seems fine... until you look at the eps file created, where for some weird reason, if you scroll down to the end, the code reads: /Font1 findfont 12 s 0 setgray 214.02 18.72 (e) 0 ta -0.360 (xp1) tb gr 12.96 206.44 (e) 90 ta -0.360 (xp2) tb...
2014 May 25
1
traffic distribution not happening in centos 6.5
.... uname ?a :- Linux hwcentos8 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux Machine Info: 16 core machine with 64GB RAM. Command used for iptables in Centos 6.5 :- iptables -A INPUT -j NFQUEUE --queue-balance 0:1 Output In Centos 6.5 :- [varun at exp2 ~]$ ./queue0 opening library handle unbinding existing nf_queue handler for AF_INET (if any) binding nfnetlink_queue as nf_queue handler for AF_INET binding this socket to queue '0' setting copy_packet mode pkt received queue0 hw_protocol=0x0800 hook=1 id=0 hw_src_addr=fc:4d:d4:d3:7f...
2012 Aug 02
2
[LLVMdev] Proposal to merge SimplifyLibCalls into InstCombiner
...strncpy, strlen, strpbrk, strtol, strtod, strtof, strtoul, strtoll, strtold, strtoull, strtold, strtoull, strspn, strcspn, strstr, memcmp, memcpy, memmove, memset, __strcpy_chk, cosf, cos, cosl, powf, pow, powl, llvm.pow.f32, llvm.pow.f64, llvm.pow.f80, llvm.pow.f128, llvm.pow.ppcf128, exp21, exp2, exp2f, llvm.exp2.ppcf128, llvm.exp2.f128, llvm.exp2.f80, llvm.exp2.f64, llvm.exp2.f32, floor, cell, round, rint, nearbyint, ffs, ffsl, ffsll, abs, labs, llabs, isdigit, isascii, toascii, sprintf, print, fwrite, fputs, fprintf, puts. Test cases that exercise the library call folder...
2020 Nov 11
2
Targeting old glibc
...will be renamed to 'exp at GLIBC_2.2.5' > and get bound to the old version at link time. It will thus work with > old glibc. I have one .cpp file with: __asm__(".symver powf,powf at GLIBC_2.2.5"); __asm__(".symver expf,expf at GLIBC_2.2.5"); __asm__(".symver exp2f,exp2f at GLIBC_2.2.5"); __asm__(".symver log2f,log2f at GLIBC_2.2.5"); __asm__(".symver logf,logf at GLIBC_2.2.5"); __asm__(".symver log,log at GLIBC_2.2.5"); __asm__(".symver log2,log2 at GLIBC_2.2.5"); __asm__(".symver exp,exp at GLIBC_2.2.5&quo...
2006 Apr 20
2
nlminb( ) : one compartment open PK model
...ical to the initial values.... I am certain that I have committed "ein dummheit" somewhere in the following code, but not sure what... Any help would be greatly appreciated. Kind regards, Greg model2 <- function(parms, dose, time, log.conc) { exp1 <- exp(-parms[1]*time) exp2 <- exp(-parms[2]*time) right.hand <- log(exp1 - exp2) numerator <- dose*parms[1]*parms[2] denominator <- parms[3]*(parms[2] - parms[1]) left.hand <- log(numerator/(denominator)) pred <- left.hand + right.hand # defining the distribution of the values const <- 1/(sqrt(2...
2020 Nov 09
0
Targeting old glibc
...). > > > > > >So far I've been able to target older glibc by having a C file containing: > > > > > >__asm__(".symver powf,powf at GLIBC_2.2.5"); > > >__asm__(".symver expf,expf at GLIBC_2.2.5"); > > >__asm__(".symver exp2f,exp2f at GLIBC_2.2.5"); > > >__asm__(".symver log2f,log2f at GLIBC_2.2.5"); > > >__asm__(".symver logf,logf at GLIBC_2.2.5"); > > > > > >__asm__(".symver log,log at GLIBC_2.2.5"); > > >__asm__(".symver log2,log2 a...
2009 Feb 24
2
[LLVMdev] Detecting counted loops
I need to be able to detect a well-behaved loop. (i.e one where exp1 assigns a value to an int i, exp2 compares i with a loop constant, exp3 adjusts i by a loop constant, and the inner block has no assignments to i.) I need this because in Sun's Java VM garbage collection only takes place at safepoints, so a potentially unbounded loop must call safepoint() some time. However, safepoints are po...
2009 Apr 25
2
plm Hausman-Taylor model
...20_H07_Note19.pdf R> library("foreign") R> fulldat <- read.dta("~/Desktop/psidextract.dta") R> library("plm") R> R> fulldat.plm = plm.data(fulldat,index=c("id","t")) R> R> earn_plm <- plm(lwage~ occ+ south+ smsa+ ind+ exp+ exp2+ wks+ + ms+ union+ fem+ blk+ ed | exp+ exp2+ wks+ ms+ union+ ed, + data = fulldat.plm,model="ht") Error in names(result) <- nf : attempt to set an attribute on NULL I have tried several variations and some other data sets (not so easily reproducible fo...