search for: multi1

Displaying 3 results from an estimated 3 matches for "multi1".

Did you mean: multi
2002 Dec 04
1
R-Winedt
...t; > options(editor="\"c:/program files/winedt/winedt\" -c=\"R-WinEdt-edit\" > -e=r.ini -V") > > getOption("editor") >[1] "\"c:/program files/winedt/winedt\" -c=\"R-WinEdt-edit\" -e=r.ini -V" > > edit ("Multi1.R") >Error in edit(name, file, editor) : unable to run editor "c:/program >files/winedt/winedt" -c="R-WinEdt-edit" -e=r.ini -V Got any advice? Thanks-- John Sutton John R. Sutton Professor Department of Sociology University of California Santa Barbara CA 93106 Of...
2008 Jul 12
1
Reading Multi-value data fields for descriptive analysis
Hello, I'm looking for help on the best approach to get "multi-value" data fields into R for simple descriptive analysis. ------------------------------------- I am new to this list and new to R, but I really want to get over the hump and get productive with it. Some help with how to best get the following data into R would be greatly appreciated. I have programming experience
2011 Jun 13
0
How to formulate an (effect-modifying) interaction with matching variable in a conditional logistic regression?
...,ptd,ht,ui) library(survival) # model with all covariates mult.cl<-clogit(low~lwt+race+smoke+ptd+ht+ui+strata(pair),data=dataset) summary(mult.cl) # H&L drop race mult2.cl<-update(mult.cl,.~.-race) summary(mult2.cl) ###################### # check interactions # ###################### multi1.cl<-update(mult2.cl,.~.+age:lwt) summary(multi1.cl) anova(mult2.cl,multi1.cl) # then comes the interaction with smoke # no good! Here's the problem multi2.cl<-update(mult2.cl,.~.+age:smoke) summary(multi2.cl) anova(mult2.cl,multi2.cl) # has to define my own variable? dataset$ageNsmoke&l...