search for: dyadic

Displaying 14 results from an estimated 14 matches for "dyadic".

2017 Dec 03
0
DATIC 2018 Summer Workshops Using R
DATIC (www.datic.uconn.edu<http://www.datic.uconn.edu>) is offering 4 workshops at the University of Connecticut in June, 2018: Mixture Modeling, Introduction to Data Analysis in R, Multilevel Modeling in R, and Dyadic Analysis with R. Registration is now open. Go to www.datic.uconn.edu<http://www.datic.uconn.edu> for more information and to register for the workshops. Mixture Modeling June 4-6, 2018 Dr. Eric Loken This 3-day mixture modeling workshop will survey techniques for exploring heterogeneous...
2012 Oct 31
1
Lavaan model
Dear R-users, Does somebody know what does the "Estimate" reported by the Lavaan model tell us? I assume this tells the relative strength of the dyadic relations. Thank you for your help! Regards, Sylvain -- View this message in context: http://r.789695.n4.nabble.com/Lavaan-model-tp4648004.html Sent from the R help mailing list archive at Nabble.com.
2011 Aug 25
0
[LLVMdev] Support Target with no register,register operations
I'm writing a back-end for a target in which all dyadic instructions support one register and one memory operand but only some instructions support two register operations. For example ADDrm and ADDrr are supported, ANDrm is supported but ANDrr isn't. I've written descriptions for ADDrm, ADDrr and ANDrm in my InstrInfo.td file but instruction s...
2010 Apr 26
1
logical(0) response from lrm
What causes the error report: logical(0) to arise in the rms function lrm? Here's my data: But both the dependent and the independent variable seem fine... > str(AABB) 'data.frame': 1176425 obs. of 9 variables: $ sex : int 1 1 0 1 1 0 0 0 0 0 ... $ faint : int 0 0 0 0 0 0 0 0 0 0 ... Here's the simplified model and error AABB$model1 < lrm (faint ~ sex)
2011 May 05
3
factors
Hi, I'm requesting you don't berate me for asking this question: I clearly don't have the gist of factors. I have two dataframes, A and B. Each of them has a column containing strings (they're labels). I want to, one-by-one in a loop, compare the particular string in an entry from dataframe A to an entry in B, to see if they're the same. The problem, when posing the
2009 Nov 13
2
why the same values cannot be judged to be the same in R
Hi Rusers, I found sometimes that the same values cannot be judged to be the same in R. Anybody knows the probelm? I think i ignored some minor detail. Thanks. Here is the example. ############ data1<-matrix(data=c(1,1.2,1.3,"3/23/2004",1,1.5,2.3,"3/22/2004",2,0.2,3.3,"4/23/2004",3,1.5,1.3,"5/22/2004"),nrow=4,ncol=4,byrow=TRUE)
2008 Apr 24
2
RFC: What should ?foo do?
Currently ?foo does help("foo"), which looks for a man page with alias foo. If foo happens to be a function call, it will do a bit more, so ?mean(something) will find the mean method for something if mean happens to be an S4 generic. There are also the type?foo variations, e.g. methods?foo, or package?foo. I think these are all too limited. The easiest search should be the most
2012 Oct 30
4
There is pmin and pmax each taking na.rm, how about psum?
Hi, Please consider the following : x = c(1,3,NA,5) y = c(2,NA,4,1) min(x,y,na.rm=TRUE) # ok [1] 1 max(x,y,na.rm=TRUE) # ok [1] 5 sum(x,y,na.rm=TRUE) # ok [1] 16 pmin(x,y,na.rm=TRUE) # ok [1] 1 3 4 1 pmax(x,y,na.rm=TRUE) # ok [1] 2 3 4 5 psum(x,y,na.rm=TRUE) [1] 3 3 4 6 # expected result Error: could not find function "psum" # actual result
2006 Nov 07
3
question on multilevel modeling
Hi, I am trying to run a multilevel model with time nested in people and people nested in dyads (3 levels of nesting) by initially running a series of models to test whether the slope/intercept should be fixed or random. The problem that I am experiencing appears to arise between the random intercept, fixed slope equation AND. (syntax: rint<-lme(BDIAFTER~BDI+WEEK+CORUMTO,
2004 Nov 13
2
Build of RELENG_5 fails in libmagic
.../../contrib/file/Magdir/parix /usr/src/lib/libmagic/../../contrib/file/Magdir/plan9 /usr/src/lib/libmagic/../../contrib/file/Magdir/troff /usr/src/lib/libmagic/../../contrib/file/Magdir/spectrum /usr/src/lib/libmagic/../../contrib/file/Magdir/softquad /usr/src/lib/libmagic/../../contrib/file/Magdir/dyadic /usr/src/lib/libmagic/../../contrib/file/Magdir/palm /usr/src/lib/libmagic/../../contrib/file/Magdir/pdf /usr/src/lib/libmagic/../../contrib/file/Magdir/vorbis /usr/src/lib/libmagic/../../contrib/file/Magdir/smalltalk /usr/src/lib/libmagic/../../contrib/file/Magdir/sgml /usr/src/lib/libmagic/../../...
2010 Oct 13
4
Change global env variables from within a function
Hi, I've looked all over for a solution to this, but haven't had much look in specifying what I want to do with appropriate search terms. Thus I'm turning to R-help. In the process of trying to write a simple function to rename individual column names in a data frame, I ran into the following problem: When I rename the columns within my function, I can't seem to get it to
2010 Jul 18
6
CRAN (and crantastic) updates this week
...astic.org/packages/steepness steepness is a package that computes steepness as a property of dominance hierarchies. Steepness is defined as the absolute slope of the straight line fitted to the normalized David's scores. The normalized David's scores can be obtained on the basis of dyadic dominance indices corrected for chance. Given an observed sociomatrix, it computes hierarchy's steepness and estimates statistical significance by means of a randomization test. * StMoSim (1.1) Matthias Salvisberg http://crantastic.org/packages/StMoSim With this package you can si...
2010 Aug 24
0
mlm for within subject design
...i]] > > > making use of the fact that `+` is defined for tables (and forgetting > about cases where two tables don't feature the same names). It works, > but isn't there a more elegant way to get the same? Would sum() work better than "+"? The sum function is not a dyadic operator. (a <- table(rep(1:3, sample(10,3)))) k <- list(a,a,a) > Reduce(sum, k ) [1] 51 > do.call("sum", k) [1] 51 > > > Last question: is there a way to determine the call stack, such that I > can see the names of the function which are actually executed whe...
2010 Oct 15
0
nomianl response model
...my function, I can't seem > to get it to apply to the data frame in the global environment in a > simple manner. There already is a function (or perhaps a composition of two functions) that does what you ask. It's the '<-' method for names() usually invoked in its dyadic form: names(object) <- character_vector > df <- data.frame(one=rnorm(10), two=rnorm(10)) > names(df) <- c("three", "four") > names(df) [1] "three" "four" In your case it would work like this: > names(tempdf)[ which(names(tempdf)==...