search for: tp4332942p4333083

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

2012 Jan 27
1
Call dynamic functions
Hi all, Does anybody know a better way to call functions than using 'eval'? I need to call functions which it's name is stored in a variable. Right now create the command string I'd like to run and then I run it using "eval". Running functions inside "eval" is starting annoying because it leads to a difficult error handling and difficult scenario to debug. So
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) >