search for: charfactor

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

Did you mean: charactor
2011 Feb 27
1
stata.get labels glm()
...information now with my country variable 'v2'. > wvs1981 <- stata.get("C:/wvs1981_v20090906.dta", lowernames = FALSE, convert.dates = TRUE, convert.factors = FALSE, missing.type = FALSE, convert.underscore = TRUE, warn.missing.labels = TRUE, force.single = TRUE, allow=NULL, charfactor=FALSE) > countrylabels <- attributes(wvs1981)$stata.info$label.table$v2 > countrylabels japan mexico south africa hungary australia tambov argentina finland south korea 13 14 15 16 17 20 22...
2008 Mar 03
1
Studdy Missing Data, differentiate between a percent with in the valid answers and with in the different missing answers
...ESS3+-+integrated+file%2C+edition+2.0%5C.% 5CESS3e02.spss.zip which I import via the spss.get like this: > ess3dk<- spss.get("filename.sav", lowernames=FALSE, datevars = NULL, use.value.labels = TRUE, to.data.frame = TRUE, max.value.labels = Inf, force.single=TRUE, allow=NULL, charfactor=FALSE) I have read the help file in spss.get and read.spss to see it this subject was mentioned and I have looked around this malinglist. I have found one question that is almost similar, here https:// stat.ethz.ch/pipermail/r-help/1998-October/002942.html (from October 1998!) but there is...
2007 Mar 27
3
Unexpected result of as.character() and unlist() applied to a data frame
Hi, > dd <- data.frame(A=c("b","c","a"), B=3:1) > dd A B 1 b 3 2 c 2 3 a 1 > unlist(dd) A1 A2 A3 B1 B2 B3 2 3 1 3 2 1 Someone else might get something different. It all depends on the values of its 'stringsAsFactors' option: > dd2 <- data.frame(A=c("b","c","a"), B=3:1, stringsAsFactors=FALSE) > dd2