search for: ln1

Displaying 13 results from an estimated 13 matches for "ln1".

Did you mean: l1
2006 Apr 27
1
Plotting Data Frame
...y looked up in the faqs and manuals and found nothing helpful. I am trying to plot a data frame with the following structure (this is just a small extract): glo conc odor line series X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 1 0 AIR LN1 UP -0.488 -0.242 -0.143 0.008 0.142 0.075 -0.031 -0.077 0.095 -0.345 -0.187 0.201 0.524 2 0 AIR LN1 UP 0.482 0.209 0.448 0.338 0.295 0.140 0.157 -0.043 -0.341 -0.601 -0.517 -0.335 0.070 5 0 AIR LN1 UP -0.294 0.214 0.409 0.048 0.198 -0.081 0.001 -0.005...
2006 May 20
1
ANCOVA, Ops.factor, singular fit???
...al measurements (the response variables in each ANCOVA) show sexual dimorphism (the sexes are the groups) independently of the animal's size (the concomitant variable). I have attached a 13-column matrix as a data frame (so far, so good). But then I tried to do this: >model<-lm(ln2~sex*ln1) or this: >model<-lm(ln2~sex+ln1) and got this: Warning message: - not meaningful for factors in: Ops.factor(y, z$residuals) which I don't understand. (In my matrix, ln2 is the name of the second column, a response variable, and ln1 is the name of the first column, a concomitant var...
2012 Apr 01
1
trouble with small multiples on a date variable
Hello, I am loading a DBF file into R via JGR and am having trouble creating small multiple histograms on a date variable. Hist() handles the variable correctly. But I've been unable to work with lattice or ggplot2 despite trying format() and as.POSIXct(). Dates are in the format "2010-05-15" and the grouping variable is categorical. I'd appreciate it if someone would provide an
2020 Aug 30
5
BUG: complete misunterstanding of the MS-ABI
...ted by MS. clang is also rather confused here: why is the return value mapped to an XMM register, but not the arguments? Microsoft's CL.EXE -c -Ox generates the following (of course) CONFORMANT code: __udivmodti4 proc public ; Line 10 test r9, r9 je SHORT $LN1 at udivmodti4 ; Line 11 mov rax, QWORD PTR [r8] mov QWORD PTR [r9], rax mov rax, QWORD PTR [r8+8] mov QWORD PTR [r9+8], rax $LN1 at udivmodti4: ; Line 12 mov rax, QWORD PTR [rdx] mov QWORD PTR [rcx], rax mov rax, QW...
2007 Jan 12
2
Magnitude of trend in time series
Hello, I am analyzing some climate time series data using the Mann Kendall package and was wondering if there was a way to calculate the trend using Sen's nonparametric estimator slope in R? Thank you in advance, Barry _________________________ Barry Baker, Ph.D. Global Climate Change Initiative The Nature Conservancy 2424 Spruce St., Suite 100 Boulder, CO 80302 Tel: (303)-541-0322 Fax:
2008 Nov 27
2
as.numeric in data.frame, but only where it is possible
...t;numeric" where it is possible. I would also like to retain my alphabetic character strings in their original forms. "5.1" > 5.1 "hm" > "hm" k<-matrix(c("aa", "bb", 1,2, 4.3, 0), nrow=2) mode(k) <- "numeric" # ln1 coerces numeric chars into "character" and # ln2 replaces alphabet chars with NA (with warnings) # => OK as matrix can't have mixed types k<-matrix(c("aa", "bb", 1,2, 4.3, 0), nrow=2) g<-as.data.frame(k, stringsAsFactos=FALSE) g[,2] # returns: # [1]...
2008 Nov 21
3
hda: no DRQ after issuing WRITE
...AdvancedPM=no WriteCache=enabled Drive conforms to: unknown: * signifies the current active mode So from recommendation on website I did this to match MaxMultiSect: hdparm -m16 /dev/hda then tried this to turn MultSect off: hdparm -m0 /dev/hda Still getting error. The Supermicro MBD-X7SBL-LN1-O motherboard has basically all defaults set in bios. Any ideas? Thanks. Matt
2012 Jun 13
0
Plotted circle does not go through desired points - very long email with code
...ain some random points on this line: x3a <- -100 x3b <- 100 y3a <- m3*x3a + b3 y3b <- m3*x3b + b3 ? # Build the spatial lines (the 2 perpendicular lines) and find their intersection: win <- owin(range(-100,x1a, x1b, x3a, x3b, xm, 100), range(-100,y1a, y1b, y3a, y3b, ym, 100)) ln1 <- psp(x1a, y1a, x1b, y1b, window = win) ln3 <- psp(x3a, y3a, x3b, y3b, window = win) ? ppt <- crossing.psp(ln1, ln3) ? # find the radius of the second circle that has center at (ppt$x, ppt$y) and goes through B and H r.crp <- sqrt((pt2$x-ppt$x)^2 + (pt2$y-ppt$y)^2) r1.crp <-...
2008 Nov 01
1
Upgrade then sudden death..
...ould appreciate all the opinions and feedback you folks can offer. I'll have the server back here in a couple of days. In the meanwhile, I'd like to get some ideas that could help me resolve this issue. I put the system board manual on my server at: http://hwy39.net/centos/Supermicro_PDSBM-LN1-LN2-LN2+_Manual.pdf . Feel free to take a look at it. -- Thanks, Ben hwy39.net lonsingerpharmacy.com
2014 Sep 15
1
Issue creating mailboxes
CentOS 6.5, cyrus-imapd 2.3.16-6 So, I gather you're supposed to create mailboxes called user.<username> But I wind up with user^<username>, and mailbox can't be found. [joliver at localhost ~]$ cyradm -u testuser1 localhost Password: localhost> cm user.testuser2 localhost> cm user.testuser3 localhost> cm user.textuser4 [joliver at localhost ~]$ sudo ls -l
2012 Jul 11
2
nls problem: singular gradient
Why fails nls with "singular gradient" here? I post a minimal example on the bottom and would be very happy if someone could help me. Kind regards, ########### # define some constants smallc <- 0.0001 t <- seq(0,1,0.001) t0 <- 0.5 tau1 <- 0.02 # generate yy(t) yy <- 1/2 * ( 1- tanh((t - t0)/smallc) * exp(-t / tau1) ) + rnorm(length(t))*0.01 # show the curve
2007 Aug 16
2
Newbie
...06/2007 Hillsborough 0 H35 FALSE 1 A 0 1 4 0 0 0 0 0 20.02 35 01/06/2007 Hillsborough 0 H5 FALSE 1 A 0 1 5 0 0 0 0 0 19.58 36 01/06/2007 Hillsborough 0 H6 FALSE 1 A 1 1 5 0 0 0 0 6 28.84 37 16/06/2007 LoughNavar 1 LN1 FALSE 1 A 1 1 5 0 3 0 0 1 22.71 38 16/06/2007 LoughNavar 1 LN10 FALSE 1 A 1 1 5 0 0 0 0 0 23.53 39 16/06/2007 LoughNavar 1 LN11 FALSE 1 A 1 1 4 0 0 0 0 2 33.24 40 16/06/2007 LoughNavar 1 LN13 FALSE 1 A 1 1...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking