Displaying 20 results from an estimated 9081 matches for "negative".
2013 Oct 12
2
Warning: appears to have a negative number of dependencies
Hello
After add some packagelist to puppet class.
I get lots of warning message "appears to have a negative number of
dependencies".
My puppet master and agent version are 3.3.1.
Here is the log out:
[root@gpu022 ~]# puppet agent --test
Info: Retrieving plugin
Info: Loading facts in /var/lib/puppet/lib/facter/puppet_vardir.rb
Info: Loading facts in /var/lib/puppet/lib/facter/puppi_projects.rb
Info:...
2005 Mar 03
1
Negative binomial regression for count data
Dear list,
I would like to fit a negative binomial regression model as described in "Byers AL, Allore H, Gill TM, Peduzzi PN., Application of negative binomial modeling for discrete outcomes: a case study in aging research. J Clin Epidemiol. 2003 Jun;56(6):559-64" to my data in which the response is count data. There are also 10...
2007 Nov 13
2
negative binomial lmer
...th family=poisson
mixed.model<-lmer(nobees~spray+dist+flwabund+flwdiv+round+(1|field),family="poisson",method="ML",na.action=na.omit)
But it is overdispersed. I tried using family=quasipoisson but get no P
values. This didnt worry me too much as i think my data is closer to
negative binomial but i cant find any examples of negative binomial lmer. I
tried using the family=negative.binomial(theta=x,link=log) but got an error
message from R saying the function famiily=negative.binomial wasnt
recognised.
Can anyone suggest how to go about setting up the lmer with negative
binomia...
2006 Aug 30
4
Barplot
Dear all,
I have a dataset. I want to make barplot from this data.
Zero1 <- "
V1 V2 V3 V4 V5 V6 V7 V8 V9
1 1 0 0 0 1 0 0 0 Positive
2 0 0 1 0 1 0 1 1 Negative
3 0 0 1 0 0 0 1 1 Positive
4 0 1 0 1 1 1 0 1 Negative
5 0 0 1 0 1 1 0 0 Positive
6 0 1 0 0 1 1 1 1 Negative
7 1 0 1 1 1 1 1 1 Negative
8 0 0 0 0 1 0 0 1 Negative
9 0 1 1 1 1 0 0 1 Negative
10 0 0 0 1 1 0 1 0 Positive
11 0 0 0...
2008 Dec 11
2
negative binomial lmer
Hi;
I am running generalized linear mixed models (GLMMs) with the lmer function
from the lme4 package in R 2.6.2. My response variable is overdispersed, and
I would like (if possible) to run a negative binomial GLMM with lmer if
possible. I saw a posting from November 15, 2007 which indicated that there
was a way to get lmer to work with negative binomial by assigning: family =
negative.binomial(theta=2.5) (or whatever value I would like to specify for
theta). However I have not been able to ge...
2007 Jan 10
9
[Patch] Fix the slow wall clock time issue in x64 SMP Vista
In x64 SMP Vista HVM guest (vcpus=2 in the configuration file), the wall
clock time is 50% slower than that in the real world. The attached patch
fixes the issue.
-- Dexuan
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2005 Mar 11
0
Negative binomial regression for count data,
Dear list,
I would like to know:
1. After I have used the R code (http://pscl.stanford.edu/zeroinfl.r) to fit a zero-inflated negative binomial model, what criteria I should follow to compare and select the best model (models with different predictors)?
2. How can I compare the model I get from question 1 (zero-inflated negative binomial) to other models like glm family models or a logistic regression to see which fits the data...
2006 Aug 04
2
why does lm() not allow for negative weights?
Dear List,
Why do commonly used estimator functions (such as lm(), glm(), etc.) not
allow negative case weights? I suspect that there is a good reason for this.
Yet, I can see reasonable cases when one wants to use negative case weights.
Take lm() for example:
###
n <- 20
Y <- rnorm(n)
X <- cbind(rep(1,n),runif(n),rnorm(n))
Weights <- rnorm(n)
# Includes Pos and Neg Weights
Weight...
2005 Jul 16
5
Implementing a ISDN home PBX
Hi,
I would like to implement a inexpensive home PBX with Asterisk. I have
an internal ISDN bus with 6 ISDN phones. I now thought, I connect a
Fritz card to my Mehrgerateanschluss (Point-to-Multipoint) supplied by
my provider and a second Fritz card to the internal bus. Will this work?
Thanks for the help,
Arik
2013 Jun 16
2
extract all numbers from a string
...9;t figure it out.
I have a series of strings of variable length, and each will
have one or more numbers, of varying format. E.g., I might
have:
tmpstr = "The first number is: 32. Another one is: 32.1.
Here's a number in scientific format, 0.3523e10, and
another, 0.3523e-10, and a negative, -313.1"
How could I get R to just give me a list of numerics
containing the numbers therein?
Thanks very much to the regexp wizards!
Cheers,
Nick
--
====================================================
Nicholas J. Matzke
Ph.D. Candidate, Graduate Student Researcher
Huelsenbeck Lab
Ce...
2007 Sep 01
5
Friday question: negative zero
The IEEE floating point standard allows for negative zero, but it's hard
to know that you have one in R. One reliable test is to take the
reciprocal. For example,
> y <- 0
> 1/y
[1] Inf
> y <- -y
> 1/y
[1] -Inf
The other day I came across one in complex numbers, and it took me a
while to figure out that negative zero...
2006 Aug 24
2
Why are lagged correlations typically negative?
Recently, I was working with some lagged designs where a vector of
observations at one time was used to predict a vector of observations at
another time using a lag 1 design. In the work, I noticed a lot of
negative correlations, so I ran a simple simulation with 2 matched
points. The crude simulation example below shows that the correlation
can be -1 or +1, but interestingly if you do this basic simulation
thousands of times, you get negative correlations 66 to 67% of the time.
If you simulate three matched...
2006 Jul 11
3
least square fit with non-negativity constraints for absorption spectra fitting
...give suggestions on how to
do spectra fitting in R using ordinary least square fitting and
non-negativity constraints. The lm() function works well for ordinary
least square fitting, but how to specify non-negativity constraints? It
wouldn't make sense if the fitting coefficients coming out as negative
in absorption spectra deconvolution.
Thanks.
Xiuli
2004 Sep 01
2
[LLVMdev] Problem with CVS LLVM build in obj != src dir case
...erer/pkg/build/llvm/src/llvm/lib/Target/X86/X86CodeEmitter.cpp: In
member function `void<unnamed>::Emitter::emitMemModRMByte(const
llvm::MachineInstr&, unsigned int, unsigned int)':
/home/wanderer/pkg/build/llvm/src/llvm/lib/Target/X86/X86CodeEmitter.cpp:437:
warning: converting of negative value `-0x000000001' to `unsigned int'
/home/wanderer/pkg/build/llvm/src/llvm/lib/Target/X86/X86CodeEmitter.cpp:437:
warning: converting of negative value `-0x000000001' to `unsigned int'
/home/wanderer/pkg/build/llvm/src/llvm/lib/Target/X86/X86CodeEmitter.cpp:437:
warning: conver...
2005 Apr 15
1
treatment of zero and negative elements in matrix indices
Matrix indexing seems to give rather "variable" results when zeros or
negative values are included among the indices (in terms of both error
messages and in terms of the number of returned values when there is no
error message).
Is this the intended behavior?
I couldn't see any comments about zeros or negative values in matrix
indices in either ?"[" or Sect...
2003 Jan 16
3
Overdispersed poisson - negative observation
Dear R users
I have been looking for functions that can deal with overdispersed poisson
models. Some (one) of the observations are negative. According to actuarial
literature (England & Verall, Stochastic Claims Reserving in General
Insurance , Institute of Actiuaries 2002) this can be handled through the
use of quasi likelihoods instead of normal likelihoods. The presence of
negatives is not normal in a poisson model, however, we...
2012 Apr 27
1
Handling Negative value due to logarithm of probabilities.
Hi,
In continuation of the discussion of melange comments,about negative value
returned in matcher due to logarithm of probabilities.
*I**f we make K suitably large, we could clamp each log(K.Pi) to be >= 0,
and this change will only affect really low probability terms (those with
Pi < 1/K, so you can adjust K to suit):*
*W' = sum(i=1,...,n, max(log(K.Pi), 0...
2004 Sep 02
0
[LLVMdev] Problem with CVS LLVM build in obj != src dir case
...Lexer.l
"/home/wanderer/pkg/build/llvm/src/llvm/tools/llvmc/ConfigLexer.l", line
191: warning, -s option given but default rule can be matched
gmake[2]: Leaving directory
`/usr/home/wanderer/pkg/build/llvm/obj/tools/llvmc'
> 2) gcc 3.5 (mainline CVS)
> Mostly result using ~0 (negative signed int) expression as value of
> unsigned int function parameter.
>
Compiling Program.cpp
/usr/home/wanderer/pkg/build/llvm/obj/lib/System/platform/../Unix/Program.cpp:
In member function `int llvm::sys::Program::ExecuteAndWait(const
std::vector<std::string, std::allocator<std::...
2010 Sep 27
1
stacked area chart
...,2.1,1.3,1.9),y=c(-4,-3,-6,-5,-7,-5.2,-6,-4,-4.9),
z=c(-0.2,-0.3,-0.4,-0.1,-0.2,-0.05,-0.2,-0.15,-0.06),a=c(4,3,5,5,6,7,5,6,4))
my.data$date<-as.character(my.data$date)
my.data$date<-as.Date(my.data$date,"%Y%m%d")
(my.data)
I'd like the variables whose column values sum up to a negative number
to be below zero on that chart and those that add up to a positive
number to be above zero in the chart. I am calculating values for ylim
and for the order of the variable entry (bottom up) like this:
positives<-which(colSums(my.data[2:ncol(my.data)])>0) # which vars
have positive col...
2015 May 04
4
Shouldn't vector indexing with negative out-of-range index give an error?
...exing by vectors' of 'R Language Definition'
(http://cran.r-project.org/doc/manuals/r-release/R-lang.html#Indexing-by-vectors)
it says:
"Integer. All elements of i must have the same sign. If they are
positive, the elements of x with those index numbers are selected. If
i contains negative elements, all elements except those indicated are
selected.
If i is positive and exceeds length(x) then the corresponding
selection is NA. A negative out of bounds value for i causes an error.
A special case is the zero index, which has null effects: x[0] is an
empty vector and otherwise includin...