search for: experi

Displaying 20 results from an estimated 33280 matches for "experi".

Did you mean: expert
2007 Mar 16
2
Discriminating between experiments with xyplot (lattice)
Hi, suppose I have data from 3 experiments which show conversion as a function of time for different boundary conditions, e.g. pressure, temperature. I want to plot all experiments as conversion over time grouped according to the temperature. However, since I have more than one experiment performed at the same temperature (but diff...
2008 Jan 28
4
Scheduling same worker/method at different times with different args
I need to run the same worker''s method twice per day with different arguments. Unfortunately, only the second entry in the schedule is firing. I created an experimental worker to verify this: Worker: class ExperimentWorker < BackgrounDRb::MetaWorker set_worker_name :experiment_worker def create(args = nil) # this method is called, when worker is loaded for the first time end def experiment(args = {}) logger.info "#{Time.now} - Exp...
2009 Jul 26
3
Question about rpart decision trees (being used to predict customer churn)
...am using rpart decision trees to analyze customer churn. I am finding that the decision trees created are not effective because they are not able to recognize factors that influence churn. I have created an example situation below. What do I need to do to for rpart to build a tree with the variable experience? My guess is that this would happen if rpart used the loss matrix while creating the tree. > experience <- as.factor(c(rep("good",90), rep("bad",10))) > cancel <- as.factor(c(rep("no",85), rep("yes",5), rep("no",5), rep("yes&qu...
2013 Sep 22
2
colores
Como usas la función image puedes consultar la ayuda ?image o help(image) y encontrarás el siguiente ejemplo donde se usa un diferente color Palette (mencionada por pepeceb en su respuesta). x <- 10*(1:nrow(volcano)) y <- 10*(1:ncol(volcano)) image(x, y, volcano, col = terrain.colors(100), axes = FALSE) # O puedes usar directamente el número para indicar el color image(x, y, volcano, col =
2010 Jun 24
2
Correctly plotting bar and scatter chart on 2-y axis plot with par(new=T)
Hello Nabble users, A question about having two y axes on a chart. I'm trying to show on the left (first) y axis a measure used in an experiment; the x axis shows the experiment number, that has been sorted in a specific manner -- i.e. not Experiments 1,2,3,n, but could be Experiment 6,1,18,n; the right (second) y axis shows an experimental variable. The idea of the chart is to show how results of the different experiments compare with...
2004 Aug 05
1
cross random effects (more information abuot the data)
...ive any answer because might my question was not clear. My question was about analysing the salamander mating data using PQL. This data contain cross-random effects for (male) and for (female). By opining MASS and lme library. I wrote this code sala.glmm <- glmmPQL(fixed=y~WSf*WSM, random=list(experiment=pdBlocked(list(pdIdent(~randf-1),pdIdent(~randm-1)))), family=binomial, data=sala.data). Where data neame=sala.glmm which contain y is response wsf is fixed effect wsm is fixed effects randf is random effect random is random effect The data contain three experiments at the same time. Th...
2008 Apr 29
7
How do you test for "consecutivity"?
I need to use R to model a large number of experiments (say, 1000). Each experiment involves the random selection of 5 numbers (without replacement) from a pool of numbers ranging between 1 and 30. What I need to know is what *proportion* of those experiments contains two or more numbers that are consecutive. So, for instance, an experiment that...
2013 Sep 22
0
colores
Por favor ver comentario con las las letras mayúsculas data("CPS1985", package = "AER") cps <- CPS1985 cps [1:10,] dim( cps) names( cps) library("quantreg") #regresion usual cps_lm <- lm(log(wage) ~ experience + I(experience^2) + + education, data = cps) #regresion por quantiles, tau son los cuantiles seleccionados cps_rq <- rq(log(wage) ~ experience + I(experience^2) + + education, data = cps, tau = seq(0.2, 0.8, by = 0.15)) #we compute predictions...
2003 May 22
1
Experimental Design
I don't know if this is the best place to post this question but I will try anyway. I have two experiements for which I use one-way matched-randomized ANOVA for the analysis and I would like to compare different treatments in the two experiments. The only common group in the two experiments are the controls. Is there any ANOVA design that allows me to make this comparison taking into conside...
2005 Jul 01
0
Unix Network Admin - Orlando, Florida, USA
Global Technology Associates, Inc. (http://www.gta.com) is looking for a network system admin with Unix experience, (see the requirements below). GTA is a small privately held corporation founded in 1992 and located in Orlando, Florida, USA. We're FreeBSD-centric and have funded, contributed and been involved in the BSD community since the company's inception. Our work environment is casual and ea...
2011 Dec 26
2
glm predict issue
Hello, I have tried reading the documentation and googling for the answer but reviewing the online matches I end up more confused than before. My problem is apparently simple. I fit a glm model (2^k experiment), and then I would like to predict the response variable (Throughput) for unseen factor levels. When I try to predict I get the following error: > throughput.pred <- predict(throughput.fit,experiments,type="response") Error in model.frame.default(Terms, newdata, na.action = na....
2008 Nov 07
0
help with syntax of random formula
...to specify a correct random formula for a mixed model, that specifies no random effect on a higher level? I have the following dataset of timeseries of respiration measurements (column resp) of biomass including a parameter initial biomass x0. Respiration measurements have been recorded in several experiments, each consisting of several replicates. str(rd) 'data.frame': 3229 obs. of 5 variables: $ suite : Factor w/ 3 levels "Face","Fal","Pushchino": 1 1 1 1 1 1 1 1 1 1 ... $ experiment: Factor w/ 44 levels "1","2","3",&qu...
2003 Dec 04
5
Experiences with Fedora 1
Hi all- Over the past week or two, I've been trying out asterisk under Fedora 1 Linux (RedHat). In my setup (single and dual Xeon motherboards), I have so far had a very good experience in terms of performance. In doing E1 load testing, I've found that Fedora handles heavy load much better than RedHat9, probably because of its better use of the multi-threading capabilities of the Xeon. Before I deploy Fedora to customer sites, though, I'm interested in other people...
2020 Feb 24
2
How to help improve debug experience w/ optimizations enabled?
Hello, I'd like to help improve the debug experience in LLVM/Clang when optimizations are enabled, but I'm not sure where to start. I've seen the umbrella bug for poor debug experiences (38768 https://bugs.llvm.org/show_bug.cgi?id=38768 ). Is there any bug in this list that isn't being looked at (and that doesn't require a lot of...
2004 Aug 04
1
cross random effects
...ive any answer because might my question was not clear. My question was about analysing the salamander mating data using PQL. This data contain cross-random effects for (male) and for (female). By opining MASS and lme library. I wrote this code sala.glmm <- glmmPQL(fixed=y~WSf*WSM, random=list(experiment=pdBlocked(list(pdIdent(~randf-1),pdIdent(~randm-1)))), family=binomial, data=sala.data). Where data neame=sala.glmm which contain y is response wsf is fixed effect wsm is fixed effects randf is random effect random is random effect The data contain three experiments at the same time. Th...
2005 Jun 06
0
The economist's term "fixed effects model" - plain lm() should work
> CAN YOU TELL ME HOW TO FIT FIXED-EFFECTS MODEL WITH R? THANK YOU! Ordinary lm() might suffice. In the code below, I try to simulate a dataset from a standard earnings regression, where log earnings is quadratic in experience, but the intercept floats by education category - you have 4 intercepts for 4 education categories. I think this works as a simple implementation of "the fixed effects model" in the sense of the term that is used in economics. I will be happy to hear from R gurus about how this can b...
2007 Jan 24
1
mixed effects or fixed effects?
Hi, I am running a learning experiment in which both training subjects and controls complete a pretest and posttest. All analyses are being conducted in R. We are looking to compare two training methodologies, and so have run this experiment twice, once with each methodology. Methodology is a between-subjects factor. Trying to r...
2008 May 29
2
Calculating conditional mean of large series of experiments
I need to repeat an experiment 1000 times. Each experiment involves randomly selecting one ball each from two separate bags. Each bag contains 10 balls, numbered 1, 2, 3, ... , 10. So the probability of selecting any one pair of balls is equal to all others. For each experiment, what I need to do is assign a variable A whic...
2006 Dec 05
6
[OT] Linux/CentOS Volunteer or PT Work
...Red Hat licenses, a donation is coming soon. Anyway, I'm looking to do some part time Linux work (I'll work cheap, possibly free for a non-profit) and would like some suggestions on how others on the list have found odd job work. My goal with this work is to get some resume building Linux experience, help me pass the RHCE exam, and ultimately begin doing contact work or move into a full-time Linux/Unix position. I have two years experience administering HP-UX and Sun Solaris for a University, about 8 years total IT experience, and I've used Linux at home since 1998 or so; I just need...
2016 Dec 22
0
Postdoc Positions - LLVM for High-Performance Computing
...n between the autotuner and the optimizer. A passion forimprovingcompiler technology, a keen interest in high-performance computing hardware, anda desireto advance scientific computing, will be rewarded in this position. Position Requirements We expect you to have: * Minimum education and experience or equivalent combination: * Doctorate + 0 years. * Experience with compiler and toolchain development, including intermediate representations, machine-independent and machine-dependent optimizations, and code generation; experience with LLVM and Clang is preferred. * Signific...