search for: lot

Displaying 20 results from an estimated 70038 matches for "lot".

Did you mean: ldt
2005 Sep 29
1
lmer random effect model matrix question
I have one fixed effect, sor, with two levels. I have eight lots and three wafers from each lot. I have included the data below. I would like to fit a mixed model that estimates a covariance parameter for wafer, which is nested in lot, and two covariance parameters for lot, one for each level of sor. The following command fits the model that I want, except...
2009 Sep 28
6
What is the most efficient way to split a table into 2 groups?
I have the following: @lot = Lot.find(params[:id]) part_nums = Part.all(:conditions => ["id <> ?", @lot.part.id]) I guess I should mention that Lot :belongs_to => :part I was looking at the log following the execution of these two statements and I saw something like this: Lot Load (0.4ms) SELECT *...
2010 Dec 22
0
Asterisk 1.8.1.1 Multiple Parking Lots
Asterisk Version: 1.8.1.1 Problem: Multiple Parking Lots Issue: Not redirecting to the right parking lot. Always uses the first parking lot from "parkedcalls show" or "features show" Asterisk Working Version: 1.6.1 Steps Taken: In features.conf added: [parkinglot_test] context => parkedcalls-test parkext => 700 parkpos =&g...
2009 Apr 29
5
2nd Parking Lot
Does anybody know of a way to make another parking lot for version 1.2? We have a multi-tenant setup and it is set for x700 for parking. Well we added some new users and not thinking, we assigned them x700. I can't change the parking number as it will mess up the other users and the new user with x700 doesn't want to change. I was hoping th...
2013 Aug 06
3
[LLVMdev] Potential SimplifyCFG optimization; hammock to diamond transformation
All, I have some code that looks like the following: { double a, b, c; for (...) { ... a = lots of FP math; b = lots of FP math; c = lots of FP math; if (cond) { a = 0.0; b = 0.1; c = 0.2; } ... } } Could we not convert the hammock into a diamond and move the initial computation of a, b, and c into the else block. Something like this: { double a, b...
2006 Mar 29
1
lmer multilevel
...examples in P&B. using Matix 0.995 In the Oxide example in p167-170 I can't get the level 2 coefficient estimates to match the fm1Oxide model in lme is data(Oxide,package="nlme") lme(Thickness~1,Oxide) which I translate in Lmer syntax to fm3Oxide<-lmer(Thickness~ (1|Lot)+(1|Lot:Wafer),data=Oxide) #or alternatively which gives the same result Oxide$LW<-with(Oxide,Lot:Wafer)[drop=TRUE] fm4Oxide<-lmer(Thickness~ (1|Lot)+(1|LW),data=Oxide) however if you look at say Lot 8, lme gives 8 1993.767 8/1 1993.677 8/2 1995.170 8/3 1990.693 while lme...
2011 Mar 16
0
Multiple Parking Lots Being Redirected to the Wrong Parking Lot
Hi, I've been trying to set up multiple parking lots using multiple tenants on version 1.8.x (tried all versions including 1.8.4RC2), however calls only park on one parking lot (the top parking lot of the command 'parkedcalls show'). Everything works fine when running on version 1.6.2.17. Currently have a bug opened, but haven't got any...
2006 Feb 08
2
lme syntax for P&B examples
...el,Dog:Side)[drop=TRUE] (fm3Pixel <- lmer(pixel ~ day + I(day^2) +(1|DS), data = Pixel)) (fm4Pixel <- lmer(pixel ~ day + I(day^2) +Side , data = Pixel)) #Oxide # P&B(2000) p167-170 Oxide<-read.csv("Oxide.csv",header=TRUE); Oxide$Source<-as.factor(Oxide$Source) Oxide$Lot<-as.factor(Oxide$Lot) Oxide$Wafer<-as.factor(Oxide$Wafer) Oxide$Site<-as.factor(Oxide$Site) fm1Oxide<-lmer(Thickness~ (1|Lot)+(1|Lot:Wafer),data=Oxide) ) (fm2Oxide<-lmer(Thickness~ (1|Lot),data=Oxide) ) coef(fm1Oxide) [[alternative HTML version deleted]]
2019 Dec 03
2
Account locked and delayed user data propagation...
...| grep 'lockoutTime' | awk '{print $NF}' > See here: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-adls/eb73820d-907a-49a5-a6f3-1847f86629b4 following the link here the code: user_is_locked () { # We folow spec, if zero, is not locked. local LOT=$(ldbsearch ${LDB_OPTS} -b "${BASEDN}" "(&(objectClass=user)(sAMAccountName=$1))" lockoutTime | grep "^lockoutTime: " | cut -d ' ' -f 2-) if [ -z "${LOT}" ] || [ ${LOT} -eq 0 ]; then return 1 fi # If non-ze...
2012 Feb 20
3
Park and PARKINGDYNAMIC
...parking context not the one I am trying to specidfy. It also is playing the parked extension to the caller. I am transfering the call to an extension that is doing a goto to the context below. Any ideas or examples on how to make this work. What I need to be able to do is have multiple parking lots using the same extension pools but seperated by a dynamic context of ${account}-Lot. So that each office suite cant cross pickup another groups parked calls while using the same number pool of 110-120. I need the dynamic option as all of our calls are database driven and we can't add a sep...
2003 Jan 09
4
Slow performance with lots of files in one directory
Hello, I've got performance problems with copying small files over to a Samba share in a directory that has lots of small files (10000 to 20000 files). It takes too long time to copy new files (they drip in at a fast pace), and smbd eats a lot of CPU time. Is there any way to make Samba run faster in this situation? Cheers, -- Anders Nordby Aftenposten AS, Systemteknisk avd. Tlf.: +47 22864083 Fax: +47...
2012 Feb 27
2
compare two data frames of different dimensions and only keep unique rows
Dear list, I am still struggling with something that should be easy: I compare two data frames with a lot of common rows and want to keep only rows that are NOT in both data frames, unique. Here are an example of these data frame. reported <- structure(list(Product = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 3L, 4L, 5L, 5L), .Label = c("Cocoa", "Coffee C", "GC", "Sugar...
2005 Jan 17
1
merge data frames taking mean/mode of multiple macthes
Hello :) I have two data frames, one has properties taken on a piece by piece basis and the other has performance on a lot by lot basis. I wish to combine these two data frames but the problem is that each lot has multiple pieces and hence i need to take a mean of the properties of multiple pieces and match it to the row having data about the lot. I was wondering if there is a simple commmand, an extension of "me...
2005 Jun 26
1
Components of variance
Could someone identify a function that I might use to perform a components of variance analysis? In addition to the variance attributable to each factor, I would also like to obtain the SE of the variances. Thank you, John John Sorkin M.D., Ph.D. Chief, Biostatistics and Informatics Baltimore VA Medical Center GRECC and University of Maryland School of Medicine Claude Pepper OAIC University of
2010 Jul 06
1
1.6.2: Using hints on multiple parking lots
Hi, How do I specify to which parking lot the hints refer to? For exemple, on 1.4 I use this to see whether a call is parked in 800: exten => 800,hint,park:800 at parkedcalls But on 1.6 I have multiple parking lots working apparently sucessfully. How do I build the hint for parkinglot1 and parkingloit2 so that my phone , w...
2012 Dec 06
0
Summary command: Two independent variables against dependent.
...lm()). > If you want just the summary(), then use '&' or '|' > For e.g. > dat1<-read.table(text=" > opcorn Oilamt Batch Yield > plain little large 8.2 > gourmet little large 8.6 > plain lots large 10.4 > gourmet lots large 9.2 > plain little small 9.9 > gourmet little small 12.1 > plain lots small 10.6 > gourmet lots small 18.0 > plain little large...
2003 Sep 05
1
doing scp from java when file has spaces in it
Hi, I am new to scp. I am trying to scp a file from local (m/c) to remote through a java application running in Tomcat. When I try to upload a file with no spaces in it, it works. But if spaces are present (file name is : "Lots of spaces text .txt") it is not working. Some of the things I tried are mentioned below and they failed. scp [...options] '/vhosts/dw02411/tmp_daemon/1020046111/Lots of spaces text .txt' grt0002d at loninwebp7.uk.db.com:uploads scp [...options] /vhosts/dw02411/tmp_daemon/1020...
2001 Apr 09
5
predict problem
...<- data.frame(x = seq(-3, 3, 0.5)) predict(lm(y ~ x), new, se.fit = TRUE) pred.w.plim <- predict(lm(y ~ x), new, interval="confidence") new1 <- data.frame(x=3) predict(lm(y ~ x), new1, interval="confidence") while this refuses to take the "new" and predict ? lot <- c(30,20,60,80,40,50,60,30,70,60) hours <- c(73,50,128,170,87,108,135,69,148,132) z1 <- lm(hours~lot) new <- data.frame(x=80) predict(z1,new,interval="confidence",level=90) best wishes Troels -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r...
2007 Mar 27
5
Park & No Announce?
We're using Grandstream GXP-2000 with programmed buttons to the first 5 parking lot extensions. When a call is parked, whichever parking lot extension it's parked on lights up red. We've never used the "announce" part and I'm wondering if there's an option I can't seem to find to disable the announce so the transfer happens faster. Thanks for any...
2009 Oct 14
2
Handle lot of variables - Regression
Hey, I've got a data set (e.g. named Data) which contains a lot of variables, for example: s1, s2, ..., s50 My first question is: It is possible to do this: Data$s1 But is it also possible to do something like this: Data$s1:s50 (I've tried a lot of versions of those without a result) My second question: I want to do a stepwise logistic regression. For thi...