Displaying 20 results from an estimated 87 matches for "quin".
Did you mean:
quid
2000 Aug 01
0
anova() on three or more objects behaves inconsistently (PR#621)
...wo or more objects are used in the call, a similar
table is produced showing the effects of the pairwise
differences between the models, considered sequentially
from first to last.
neither of which are clear enough to disambiguate this.
Example:
library(MASS)
data(quine)
quine.hi <- aov(log(Days + 2.5) ~ .^4, quine)
quine.nxt <- update(quine.hi, . ~ . - Eth:Sex:Age:Lrn)
quine.lo <- aov(log(Days+2.5) ~ 1, quine)
anova(quine.hi, quine.nxt, quine.lo)
quine.hi1 <- glm(log(Days + 2.5) ~ .^4, data=quine)
quine.nxt1 <- update(quine.hi1, . ~ . - Eth:Sex:A...
2007 Feb 23
1
Bootstrapping stepAIC() with glm.nb()
...LSE)
}
res
}
####################
library(MASS)
# 'glm' objects
x1 <- runif(100, -4, 4)
x2 <- runif(100, -4, 4)
y <- 1 + 2 * x1 + rnorm(100, sd = 3)
dat <- data.frame(y, x1, x2)
glmFit <- glm(y ~ x1 + x2, data = dat)
fn(glmFit, data = dat)
# 'aov' objects
quine.hi <- aov(log(Days + 2.5) ~ .^4, quine)
fn(quine.hi, data = quine)
However, for "negbin" objects returned by glm.nb() the following
problem occurs:
quine.nb <- glm.nb(Days ~ .^4, data = quine)
fn(quine.nb, data = quine)
Any hints to overcome this are greatly appreciated.
Tha...
2010 Nov 15
1
comparing levels of aggregation with negative binomial models
Dear R community,
I would like to compare the degree of aggregation (or dispersion) of
bacteria isolated from plant material. My data are discrete counts
from leaf washes. While I do have xy coordinates for each plant, it
is aggregation in the sense of the concentration of bacteria in high
density patches that I am interested in.
My attempt to analyze this was to fit negative binomial
2000 Aug 07
1
predict.lm is broken in 1.1.0-patched (2000-August-7) (PR#626)
predict.lm has been broken by recent changes to the patched branch.
It fails for all singular fits. An example:
library(MASS)
data(quine)
quine.hi <- aov(log(Days + 2.5) ~ .^4, quine)
quine.nxt <- update(quine.hi, . ~ . - Eth:Sex:Age:Lrn)
predict(quine.nxt)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
21 22...
2000 Mar 29
0
Please inform samba@samba.org Giulio Orsero <giulioo@pobox.com> Mike Quin <m.r.quin@stir.ac.uk> Matthew Halliday <matthewh@fesa.co.uk> Carsten =3D?iso-8859-1?Q?Nordstr=3DF8m?=3D Jensen <north@get2net.= "Carlos Vinueza M." <carlos@ecuadorexplorer.com> Eric
samba@samba.org
Giulio Orsero <giulioo@pobox.com>
Mike Quin <m.r.quin@stir.ac.uk>
Matthew Halliday <matthewh@fesa.co.uk>
Carsten =3D?iso-8859-1?Q?Nordstr=3DF8m?=3D Jensen <north@get2net.=
"Carlos Vinueza M." <carlos@ecuadorexplorer.com>
Eric Dahnke <edahnke@istreetlabs.com>
Giulio Orsero <giulioo@pobox.com&g...
2006 Jul 14
8
CAS Authentication filter.
...ilter.login_url
CAS::Filter.validate_url
CAS::Filter.server_name
--
Ola Bini (http://ola-bini.blogspot.com)
JvYAML, RbYAML, JRuby and Jatha contributor
System Developer, Karolinska Institutet (http://www.ki.se)
OLogix Consulting (http://www.ologix.com)
"Yields falsehood when quined" yields falsehood when quined.
2006 Aug 06
6
Having Problem w/ Agile Web Development book
I get this error ...
NoMethodError in StoreController#index
undefined method `salable_items'' for Product:Class
and here is my store_controller.rb ...
class StoreController < ApplicationController
def index
@products = Product.salable_items
end
def self.salable_items
find(:all, :conditions => "date_available <= now()", :order =>
"date_available
2006 Jul 21
4
Autocompleting InPlaceEditor
...is and make it
available as a plugin, or something like that?
Regards
--
Ola Bini (http://ola-bini.blogspot.com)
JvYAML, RbYAML, JRuby and Jatha contributor
System Developer, Karolinska Institutet (http://www.ki.se)
OLogix Consulting (http://www.ologix.com)
"Yields falsehood when quined" yields falsehood when quined.
2009 Jun 06
1
EBImage not loading
...rary '/home/qilin/R/i486-pc-linux-
gnu-library/2.6/EBImage/libs/EBImage.so':
/usr/lib/libgomp.so.1: cannot allocate memory in static TLS block
Error: package/namespace load failed for 'EBImage'
- - - -
Which is meaningless to me. Any help would be enormously appreciated,
thanks.
Quin
* Quin Wills *
* DPhil candidate *
* *
* Department of Statistics
University of Oxford
1 South Parks road
Oxford
OX1 3TG
+44 (0)1865 285 394
*
[[alternative HTML version deleted]]
2006 Feb 21
3
How to get around heteroscedasticity with non-linear leas t squares in R?
...ant
methods are for data with heavy tails, not heteroscedasticity. The common
ways to approach heteroscedasticity are transformation and weighting. The
first is easy and usually quite effective for dose-response data. The
second is not much harder. Both can be done in R with nls().
Andy
From: Quin Wills
>
> I am using "nls" to fit dose-response curves but am not sure
> how to approach
> more robust regression in R to get around the problem of the my error
> showing increased variance with increasing dose.
>
>
>
> My understanding is that "rlm...
2006 Jul 14
4
sending additional parameters to before_filter
i am trying to create a system so that different users have different
priviliges on my application. i was going to modify my authorize
function so that i could pass the required role to it and have it check
the current user for that role.
i am using before_filter and would like to have just one function
instead of writing one for each role like so:
authorize(role)
instead of:
2007 Aug 15
0
Negative Binomial: glm.nb
...then the linear model,
and so on.
I hope I've understood right!
However, this procedure if based on the assumption that the same
value of theta applies across the board, regardless of the values
of any covariates or factors.
The MASS book (Section 7.4) illustrates the use of glm.nb() on
the Quine data (for numbers of days absence from school in a
school year by Australian children). There are four factors in
addition to the "outcome" Days:
Eth: Ethnicity (Aboriginal "A"/Non-Aboriginal "N")
Lrn: Learning Ability (Slow learner"SL", Average Learner &q...
2004 May 21
1
Bug in update()? (PR#6902)
Dear all,
I noticed the following while playing around with fitting log-linear
models to contingency tables using R 1.8.1, but the problem also
exists under R 1.9.0.
A reproducible example uses the following contingency table:
> library(MASS)
> data(quine)
> tmp <- with(quine, expand.grid(Eth=levels(Eth), Sex=levels(Sex),
+ Lrn=levels(Lrn), Age=levels(Age)))
> n <- nrow(quine)
> quine2 <- with(quine,
+ data.frame(tmp,
+ Count=as.vector(tapply(rep(1,n), list(Eth, Sex, Lrn, Age), sum))))
First fit a...
2006 Jul 14
2
Configuration search order
...ic configuration to a plugin? Would kinda
come in handy, actually...
--
Ola Bini (http://ola-bini.blogspot.com)
JvYAML, RbYAML, JRuby and Jatha contributor
System Developer, Karolinska Institutet (http://www.ki.se)
OLogix Consulting (http://www.ologix.com)
"Yields falsehood when quined" yields falsehood when quined.
2007 Jul 30
2
problems saving and loading (PLMset) objects
...nherited
method for function "coefs", for signature "character"
Trying str(exp) just gives the following:
> chr "exp"
expr.Rdata appears to save properly (in that there is an actual file with
notable size in my working directory).
Thanks in advance,
Quin
[[alternative HTML version deleted]]
2006 Aug 07
5
Store SOAP::RPC::Driver in user session throws TypeError
Hi All
I have a
requirement to consume a 3rd party web service from my Rails
application. I am doing this
in my action
require ''soap/wsdlDriver''
factory = SOAP::WSDLDriverFactory.new(TRANSIDIOM_WSDL_URL)
soap = factory.create_rpc_driver
soap.wiredump_file_base="#{RAILS_ROOT}/log/transidiom.log"
param = %(<Request
2007 Jul 17
2
multiple rugs on a single plot
...lots under a kernel density plot for a
population. The population is subdivided into 3 subpopulations, which I'd
like the rug plots to highlight. Naturally, when I do 3 rug plots, they all
plot over each other. I'd like 3 parallel rug plots along the x-axis. But
how.
Thanks in advance,
Quin
[[alternative HTML version deleted]]
2006 Jul 22
1
InPlaceEditor with Autocompletion
...placecompleter.html
Usage is provided in the README and RDoc.
Regards
--
Ola Bini (http://ola-bini.blogspot.com)
JvYAML, RbYAML, JRuby and Jatha contributor
System Developer, Karolinska Institutet (http://www.ki.se)
OLogix Consulting (http://www.ologix.com)
"Yields falsehood when quined" yields falsehood when quined.
2007 Oct 19
1
unable to interactively label curves on a plot
...)
> lines(x,y2)
> labcurve(labels=c("curve1", "curve2"), method="locator")
From the help file, this is how I would understand it should be done,
but have tried many other combinations, with no luck.
Running up-to-date R, R packages and Fedora.
Many thanks,
Quin
--
* *
* *
* *
*Quin Wills*
*DPhil candidate*
* *
*Department of Statistics*
*University** of Oxford***
*1 South Parks Road*
*Oxford***
*OX1 3TG
United Kingdom*
*01865 285 394*
[[alternative HTML version deleted]]
2007 Dec 28
1
JtestR 0.1 released
...a.bini at gmail.com
Anda Abramovici - anda.abramovici at gmail.com
--
Ola Bini (http://ola-bini.blogspot.com)
JRuby Core Developer
Developer, ThoughtWorks Studios (http://studios.thoughtworks.com)
Practical JRuby on Rails (http://apress.com/book/view/9781590598818)
"Yields falsehood when quined" yields falsehood when quined.