Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
critical bug in exp2 script
Browse files Browse the repository at this point in the history
  • Loading branch information
taivop committed Dec 5, 2016
1 parent fa21073 commit fbef966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/r/exp2_summary.r
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ normalise_request_log_df <- function(df) {
DROP_TIMES_BEFORE = first_request_time + 2 * 60 * 1000
DROP_TIMES_AFTER = last_request_time - 2 * 60 * 1000

df2 <- df2 %>% filter(timeCreated > first_request_time &
timeCreated >= DROP_TIMES_AFTER) %>%
df2 <- df2 %>% filter(timeCreated > DROP_TIMES_BEFORE &
timeCreated <= DROP_TIMES_AFTER) %>%
select(-timeCreated, -timeEnqueued, -timeDequeued, -timeForwarded,
-timeReceived, -timeReturned)
return(df2)
Expand Down

0 comments on commit fbef966

Please sign in to comment.