search for: carseywolf

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

Did you mean: carewolf
2012 Jan 27
1
multiple column comparison
....V1 I'd ideally like to create this so that it can handle any number of variables and any number of coders. I appreciate any thoughts, help, and pointers on this. Thanks in advance. Best, Ryan Fuller Doctoral Candidate, Communication Graduate Student Researcher, Carsey-Wolf Center http://carseywolf.ucsb.edu University of California, Santa Barbara -- View this message in context: http://r.789695.n4.nabble.com/multiple-column-comparison-tp4332604p4332604.html Sent from the R help mailing list archive at Nabble.com.
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused. Here are the commands I have entered: > data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",") > NumberOfActionsByStatus = data$STATUS > NumberOfActionsByUser = data$ETS_LOGIN > NumberOfBidOffer = data$BID_OFFER > NumberOfActionsByUser.freq = table(NumberOfActionsByUser) >