similar to: Predicted values when using offset in ZIP GLM

Displaying 20 results from an estimated 200 matches similar to: "Predicted values when using offset in ZIP GLM"

2012 Jul 09
3
Predicted values for zero-inflated Poisson
Hi all- I fit a zero-inflated Poisson model to model bycatch rates using an offset term for effort. I need to apply the fitted model to a datasets of varying levels of effort to predict the associated levels of bycatch. I am seeking assistance as to the correct way to code this. Thanks in advance! Laura [[alternative HTML version deleted]]
2013 Dec 06
3
SQL as a storage backend
Hello, I am researching using dovecot with an SQL database as the storage backend. From what I've read, dovecot only supports mbox style file storage, but I'd like to investigate the possibility of using a database instead. According to http://dovecot.org/pipermail/dovecot/2006-June/013818.html, this possibility has been explored before and has generally been accepted that Dovecot
2003 Oct 16
1
problem with INSTALL file
I'm reporting a problem with documentation for openssh 3.7 portable. In the INSTALL file it says in the configure section: --with-md5-passwords will enable the use of MD5 passwords. Enable this if your operating system uses MD5 passwords without using PAM. The above verbage implies that if you use PAM there's no need to use the --with-md5-passwords option. This, I have discovered, is
2009 Mar 24
2
how to access encrypted EXT3 partition from Windows
Hi all, I know some may find this OT, so please ignore this if you think it's OT. I don't know any Linux-friendly Windows mailing lists / forums that will even bother with Linux related questions. I want to carry some data (client info, documents, photos, email, accounting stuff, etc) with me on a USB HDD, but want to encrypt it. I know one easy way to shared data between Windows &
2014 Aug 06
0
Multiple userdb on specific ports
Hello everyone, Is it possible to, from one instance, bind a single userdb to a specific listen port in Dovecot? For example, requiring passwd or PAM authentication on IMAP port 143, but using an SQL passdb only on port 8143? Regards, ZWS -- *Zachary Sturgeon* Programmer Peregrine Computer Consultants Corporation 3927 Old Lee Highway, Suite 102-C Fairfax, VA 22030-2422 http://www.pccc.com/
2011 Mar 19
1
Safe/sane tempfile creation?
I'm used to Debian-based distros which have a tempfile(1) utility for safely and sanely creating temporary files. There isn't a comperable utility for RHEL/CentOS systems. I've been exercising Google-fu looking for a good robust tempfile generation idiom, but haven't turned one up yet. Hence this appeal to the lazyweb. -- Dr. Ed Morbius, Chief Scientist / | Robot
2009 Apr 24
7
Get only script name with shell script
Hi all, I wrote shell script and put it under the /usr/local/bin/ directory. I use echo $0 for get script name but it has printed "/usr/local/bin/<scriptname>" but i want to only print <scriptname> How can i do this ? Thanks all for help. -- Iyi calismalar.Basarilar... Semih Gokalp Istanbul/Turkiye
2009 Jun 03
4
[OT] Simple Shell Script (while loop)
Hey Guys, I can not find the corrent syntax for what I am trying to acheive with a while loop. Having said that I'm not exactly sure what you would call it so I have been googling with no success probably for that reason. I am just working with some sub directories except there is one I don't want to use so I have a while loop like the following; if we stubmle into the sub directory I
2009 Jun 03
3
System V Init Script
Hey Listees, I have a question (hopefully quite simple) about the system V init scripts in /etc/init.d. I have an app installed and for some reason it had no system V init script. It has been installed a long while now so I can't quite remember whats going on but basically I remember I wrote the init script my self and the app is enabled as a service which chkconfig to run at system levels 3,
2011 Feb 14
7
Any update on 5.6 / 6?
Hi, Despite the mailing list and twitter I did not find any updated info on either versions regarding the current status. So, what is the current status of both versions? (like 60%) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20110214/39bd18d7/attachment.html>
2002 Mar 26
2
OT: Perfect Pitch
I won't bother quoting all of Moz's statements of how sound is interpreted by those blessed/cursed with tape recorders in their heads :) I will add that his whole explanation of perfect pitch perception easily offers an explanation as to why some individuals will only archive flac/pac/ape (Moz - do you?) and those of us that do not perceive that level of detail and are fine using ogg
2009 May 08
9
Bash Script help...
Hi All, I need to write a script that I will manually start (or a cron job in future) but I need it to do a number of things in order one after another. How do i do that so everything gets dont as the steps depend on each other. Example: cd /system_backups/ tar cvf apache-conf.tar /etc/httpd/conf/* gzip -v9 apache-conf.tar tar cvf apache-data.tar /var/www/* gzip -v9 apache-data.tar
2006 Jan 18
4
negative predicted values in poisson glm
Dear R helpers, running the following code of a glm model of the family poisson, gives predicted values < 0. Why? library(MASS) library(stats) library(mvtnorm) library(pscl) data(bioChemists) poisson_glm <- glm(art ~ fem + mar + kid5 + phd + ment, data = bioChemists, family = poisson) predicted.values = predict(poisson_glm) range(predicted.values) Thank you in advance for any hints.
2009 Jun 03
11
Centos 5.3 -> Apache - Under Attack ? Oh hell....
Guys, apache cpus usage is hitting 100% sometimes ( to such an extent that its very noticeable) on a box with just 8 users or so. i m getting this when i run 'top'. The worrying thing is seeing the work 'atack' under command PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 23119 apache 15 0 964 556 472 S 0.7 0.0 0:03.68 atack 23479 apache 15
2009 Apr 12
2
"taking the log then later exponentiate the result" query
Hi, I am trying to figure out the observed acceptance rate and M, using generalised rejection sampling to generate a sample from the posterior distribution for p. I have been told my code doesn't work because I need to "take the log of the expression for M, evaluate it and then exponentiate the result." This is because R is unable to calculate high powers such as 545.501. As
2012 Apr 11
1
row.names in dunes and dunes.env?
Hello, I've got a small dataset on box turtle shell measurements that I would like to perform a detrended correspondence analysis on. I thought that it would be interesting to examine the morphometrics for each species in the area of overlap and in areas where neither species occurs.  I've taken a look at the dune and dune.env datasets in vegan. Using the str() command gives me  >
2013 Feb 04
2
Contract Syntactic Sugar
## the following is a dream: add some sugar syntax to allow for contracts with teeth (in and out checking) > is.positive <- function(x) (all(x>0)) > exponentiate <- function( x ::is.data.frame , exponent ::is.numeric is.positive) :: is.vector is.numeric { x$base :: is.positive ## error also if base does not exist in x; may need some special IQ x$base^exponent }
2009 Mar 20
1
Is this sample size big enough to test for statistical significance?
Dear R community, Is this sample size large enough to study differences between two groups of the populations? Q1: do the body temperatures differ between the two groups of the overwintering turtles juveniles and adults? One group (adults) has 6 turtles Second group (juveniles) has 1 turtle. There are 3 replications, i.e. the experiment was repeated over the three years, but using
2006 Sep 21
2
Exponentiate a matrix
Suppose I have a square matrix P P <- matrix(c(.3,.7, .7, .3), ncol=2) I know that > P * P Returns the element by element product, whereas > P%*%P Returns the matrix product. Now, P^2 also returns the element by element product. But, is there a slick way to write P %*% P %*% P Obviously, P^3 does not return the result I expect. Thanks, Harold [[alternative HTML version
2009 Apr 24
1
what is this experimental design (mixed-effects model)?
Dear R community, I am wondering what experimental design I am dealing with? I study the effect of daily air temperature on daily body temperature of the overwintering turtles (i.e. sleeping in soil). The model is a cosine wave with the air temperature as a covariate. Objects are 19 overwintering turtles. Data were combined over the three years. Each turtle was studied only once during these