Displaying 20 results from an estimated 5000 matches similar to: "Within-group correlation confidence intervals"
2007 Oct 29
1
How to test combined effects?
Suppose I have a mixed-effects model where yij is the jth sample for
the ith subject:
yij= beta0 + beta1(age) + beta2(age^2) + beta3(age^3) + beta4(IQ) +
beta5(IQ^2) + beta6(age*IQ) + beta7(age^2*IQ) + beta8(age^3 *IQ)
+random intercepti + eij
In R how can I get an F test against the null hypothesis of
beta6=beta7=beta8=0? In SAS I can run something like contrast age*IQ
1,
2007 Apr 01
1
No Audio with Gtalk
I configured my * with the instructions found here
http://www.voip-info.org/wiki/view/Asterisk+Google+Talk
to work with gtalk. The Phone rings and connects - but no audio!
I am using a self-compiled asterisk 1.4.2 There is a lot of output on
the CLI but I can't make sense of it. Perhaps somebody can help?
Michael
Output from the CLI:
JABBER: gtalk_account OUTGOING: <iq
2002 Jun 30
4
modifying a vector
Hello everyone,
Thanks to all who offered suggestions after my initial query to the list.
I've been busy trying to absorb the docs as fast as possible, but this
little thing has me stumped for the moment.
I'm creating a random sample of 100 item and saving it to a vector named
'iq'. I'd like to create a second vector (iq_prime, say) by adding 20 to
each element of the
2002 Jun 30
4
modifying a vector
Hello everyone,
Thanks to all who offered suggestions after my initial query to the list.
I've been busy trying to absorb the docs as fast as possible, but this
little thing has me stumped for the moment.
I'm creating a random sample of 100 item and saving it to a vector named
'iq'. I'd like to create a second vector (iq_prime, say) by adding 20 to
each element of the
2010 Jun 08
2
Extract/format/show for S4 objects
Hi all,
I'm trying to make an integer-backed quarter (as in fraction of year)
class, but I can't quite it to work. I want integer-backed so I don't
have to worry about floating-point effects when doing math, and so that
I can use it as in data.table.
First of all, is there a good reference for this anywhere? All of the
S4 tutorials that I've found have been too high-level, and
2012 Jul 30
1
why querying Sybase IQ using RODBC returns error ?
Hello,
I am not able to query Sybase IQ database from R using RODBC package.
Check the below code
R> sybaseiq.query <- function (sql, ..., as.is = FALSE)
{
connstr <- "Driver={Sybase
IQ};UID=ajadhav2;PWD=*****;ServerName=PSGSESHR01A_IQ;CommLinks=SharedMemory,TCPIP{host=psgseshr01_iq.sg.csfb.com;port=3051}"
chan <- odbcDriverConnect(connstr)
2004 Mar 21
1
Multilevel analysis with package lme
Dear list,
i am a student of psychology and have to do a multilevelanalysis on some data.
About that i have one general and one specific question.
This is what i have copied from the help-file on lme:
data(bdf)
fm <- lme(langPOST ~ IQ.ver.cen + avg.IQ.ver.cen, data = bdf,
random = ~ IQ.ver.cen | schoolNR)
summary(fm)
after summary(fm) i get the following error:
2019 Jan 24
1
debian10+dovecot-2.2.33.2
Another known issue, fixed with
https://github.com/dovecot/core/commit/ca4c2579f0456072bdb505932a9cf7602e42afd2.patch
Aki
> On 24 January 2019 at 20:54 Maciej Milaszewski IQ PL <maciej.milaszewski at iq.pl> wrote:
>
>
> Hi
> Like bumerang.
>
> 2.2.36 works fine on debian10 but connect by telnet like:
>
> Connected to 46.xxx.xxx.xxx.
> Escape character is
2019 Jan 24
2
debian10+dovecot-2.2.33.2
Hi
Thenx. Dump core:
Core was generated by `dovecot/auth'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0? 0x00007fa910394c7a in ?? () from /lib/x86_64-linux-gnu/libc.so.6
(gdb) bt full
#0? 0x00007fa910394c7a in ?? () from /lib/x86_64-linux-gnu/libc.so.6
No symbol table info available.
#1? 0x00005604e6f98bc8 in password_scheme_register_crypt () at
password-scheme-crypt.c:144
2007 May 29
2
R's Spearman
Hi all,
I am trying to figure out the formula used by R's Spearman rho (using
cor(method="spearman")) because I can't seem to get the same value as by
calculating "by hand". Perhaps I'm using "cor" wrong, but I don't know
where. Basically, I am running these commands:
> y=read.table(file="tmp",header=TRUE,sep="\t")
>
2012 Jun 10
1
lmer function in R
Dear R users,
I'm estimating a two-level regresion model but having difficuly in finding
a good R syntax example.
Let me use an example to explain what I'm doing. The dependent variable is
math score (mathscore). Predictors are at two levels. At the student level,
they are household income (hinc) and IQ (IQ). At the school level, there is
a dummy variable indicating if the school is a
2005 Jan 11
1
lme4 print and summary errror
Hi all - (this is posted to r-help and R-SIG-MAC)
OSX 10.3.7, R 2.0.1, lme4/Matrix/latticeExtra latest, fresh install of
R. MASS loaded (or not).
I am getting an error message for the print() and summary() commands
with all lme models I try and run in lme4 (GLMM's work fine). Using
the example from the lme help, summary and print produce the following
errors, despite the model being
2012 Oct 30
2
help with lme
Dear Madam or Sir
I am writing you hoping, that you can help me with a problem concerning the output of regressions done with the function lme in R.
I would need the standard deviations for intercepts and predictors, but in the output I can only find those for the intercepts. Could it be, that this is my fault? (I am just a beginner with R and multilevel modeling).
I am sorry to annoy you with
2010 Jan 25
3
binary
Hi all
Assume I have a data set xx;
Group: 1=group1 ?, 2=group2
IQ: ?1= High, 0 =low
fit <- glm(IQ ~group, data = xx, family = binomial())
summary(fit)
Results
?????? ????????????Estimate Std. Error z value Pr(>|z|)
(Intercept) -2.55456??? 0.210 -12.273? < 5e-16 ***
group????????? 0.36180 ?????0.076?? 3.952 ????5.24e-05 ***
the odd ratio = exp(0.36180 )= 1.435912
My question
2019 Nov 20
2
Error: Raw backtrace and index cache
Hi
Thanx for replay.
Log:
http://paste.debian.net/1117077/
On 20.11.2019 10:07, Aki Tuomi wrote:
> Firstly, 2.2.13 is about 5 years old. So there's that. It would be
> helpful if you can reproduce this with 2.2.36.
>
> Also, you forgot to actually include in your log snippet the panic. So
> maybe few more lines before the Raw backtrace?
>
> Aki
>
> On 20.11.2019
2008 Dec 24
1
Using SPSS Labels
I am trying to import a SPSS.sav file into R. The attached file is not
technically the file I am trying to import, but does replicate my
problem. The actual file is much too large to attach. No matter what I
do, I can not get R (base or Hmisc) to apply the value labels in
the .sav file to the dataframe created in R. Here's the code that I am
using.
maine <- spss.get("test.sav")
#
2011 Sep 30
1
need help on forest plot with ggplot
Dear R users,
I am trying to do the forest plot follow the function given on web. However,
the order of the tests has been sorted alphabetically. I would prefer
keeping the order as data frame input so that I can group and compare (from
the graph) the target immune NS1, IgG and IgM (where SD, BioRad, Pb etc are
the brand names)
> d
x y ylo yhi
SD.NS1
2013 Feb 14
3
appending data to a row
For an analysis of data from twins, I'd like to do some rearranging in my
dataframe. Currently, each twin has his or her own row. I'd like to add
several columns of the co-twin's data to each row. In other words, this is
the current situation:
FamilyID ParticipantID IQ Digit_span
1 1 95 6
1 2 93 7
2 3 102 8
2
2019 Jan 24
2
debian10+dovecot-2.2.33.2
Hi
Thenx for replay - problem solved :)
I forget `autoreconf -vi`
You are rox :)
?On 24.01.2019 19:10, Aki Tuomi wrote:
> You need to do `autoreconf -vi` before configure, won't work otherwise.
>
> Aki
>
>> autoreconf -viOn 24 January 2019 at 20:09 Maciej Milaszewski IQ PL <maciej.milaszewski at iq.pl> wrote:
>>
>>
>> Hi
>> Thenx. I use your
2011 Feb 10
2
Gtalk/Jabber Issue
OK, im pulling my hair out, everything looks configured right, deleted, and
started over, etc, etc. but can't seem to get this to work
Gtalk.conf
[general]
context=google-in
allowguest=yes
bindaddr=192.168.xxx.xxx
extenip=96.254.xxx.xxx
[guest]
context=google-in
disallow=all
allow=ulaw
allow=g729
connection=jp_jabber
jabber.conf
[general]
debug=yes