Displaying 2 results from an estimated 2 matches for "tp4332942p4332942".
2012 Jan 27
1
Call dynamic functions
...inside "eval" is starting annoying because it leads to a
difficult error handling and difficult scenario to debug. So that I am
asking if there is someone that knows and easier way to do that.
Thanks
--
View this message in context: http://r.789695.n4.nabble.com/Call-dynamic-functions-tp4332942p4332942.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)
>