Displaying 2 results from an estimated 2 matches for "cnos".
Did you mean:
cmos
2013 May 18
1
glmer.nb: function not in downloaded lme4 package?
...of 64-bit R (version 3.0.1) but after loading the package and calling:
library(lme4)
help(glmer.nb)
# I receive the following message:
No documentation for ‘glmer.nb’ in specified packages and libraries:
you could try ‘??glmer.nb’
# I called the glmer() function successfully, i.e.
glmer(CNos ~ Year+Month+(1|Vessel), data=Occ.cr, family=poisson, offset=Occ.cr$logtrapd)
# but when I tried this:
glmer.nb(CNos ~ Year+Month+(1|Vessel), data=Occ.cr, offset=Occ.cr$logtrapd)
# I got the error message:
Error: could not find function "glmer.nb"
# Can you please provide a...
2003 Apr 25
1
Creating objects from values in a "meta" dataframe
...g content:
Test Min Max Low High
APS 0 40 -10 10
TPP 0 120 -8 8
NOS 0 25 -15 12
... etc ...
I want to create an object based on each of the Test names, for example:
cADS <- function(ADS1, min=0, max=40; low=-10, high=10)
cTPP <- function(TPP1, 0, 120, -8, 8)
cNOS <- function(NOS1, 0, 25, -15, 12)
.. etc ...
where ADS1, TPP1, NOS1, etc. are columns from a second data frame, say,
"study".
So in summary how do I create a variable based on the entries in "meta"
(e.g. from 'APS' I want to create 'cAPS') using a column in...