Displaying 1 result from an estimated 1 matches for "badcontroller".
2008 Sep 05
1
boxplot including null info from dataframe, not with SQLite dataframe
...erest are
controller, action and total_time: controller and action have string
values; total_time has a decimal value.
I first did the following box plot to find the problem controllers.
boxplot(total_time ~ controller, all_data)
Having identified one controller of interest (let's say
"BadController"), I then wanted to then focus on the actions
associated with that controller. So I did this:
boxplot(total_time ~ action, subset(all_data, controller == "BadController"))
This gave me a plot I was expecting: just the actions which are
associated with "BadController"....