search for: danielezrajohnson

Displaying 2 results from an estimated 2 matches for "danielezrajohnson".

2012 Sep 20
2
VarBrul in R
Several years ago there were R implementations of a socio-linguistics analysis method called Variable Rule Analysis namely rbrul and r-varb. Both neither of the sites listed (in the method's WikiPedia page http://en.wikipedia.org/wiki/Variable_rules_analysis ) appear to be online any more (one was at UPenn and the other at Indiana). Does anyone know a) whether the code for either or both of
2008 Aug 10
1
print data frames without row names (within a list)
This should be an easy one, but I could not find the answer in the obvious places. one <- data.frame(a=c(1,2,3),b=c("x","y","z")) two <- data.frame(a=c(4,5,6),b=c("q","r","s")) > print(one) a b 1 1 x 2 2 y 3 3 z > print(one,row.names=F) a b 1 x 2 y 3 z So far, so good, but how do I do this if the data frames are bound