search for: d5682

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

Did you mean: 15682
2012 Jan 26
1
How to remove rows representing concurrent sessions from data.frame?
...05 15:23:15 5 user1 D5599.domain.com 2011-02-14 14:33:39 2011-02-14 14:40:16 6 user1 D5599.domain.com 2011-02-23 13:54:30 2011-02-23 13:58:23 7 user1 D5599.domain.com 2011-03-21 10:10:18 2011-03-21 10:32:22 8 user1 D5645.domain.com 2011-06-09 10:12:41 2011-06-09 10:58:59 9 user1 D5682.domain.com 2011-01-03 12:03:45 2011-01-03 12:29:43 10 USER2 D5682.domain.com 2011-01-12 14:26:05 2011-01-12 14:32:53 11 USER2 D5682.domain.com 2011-01-17 15:06:19 2011-01-17 15:44:22 12 USER2 D5682.domain.com 2011-01-18 15:07:30 2011-01-18 15:42:43 13 USER2 D5682.domain.com 2011-01-25 1...
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) >