STAT210example5.6 | R Documentation |
An engineer is studying methods for improving the ability to detect targets on a radar scope. She considers the amount of background noise on the scope and the type of filter placed over the screen to be important factors (fixed-type factors). An experiment was performed with four randomly selected operators (served as blocks). The intensity of the target was increased until the operator observed it. This data shows the measured intensity level at target detection.
STAT210example5.6
A data frame with 24 observations (rows) and 4 variables (columns).
Column name | Data type | Description | Values | |
[,1] | ground_clutter | factor | 3 levels of background noise | (high, low, medium) |
[,2] | operators | factor | 4 different operators | (1, 2, 3, 4) |
[,3] | filter_type | factor | Type of filter placed over the screen | (1, 2) |
[,4] | intensity_level | integer | Intensity level at target detection | (80 - 114) |
This data is from Example 5.6 in Design and Analysis of Experiments. 9th Edition, EMEA Edition.
Montgomery, D. C. (2019) Design and Analysis of Experiments, 9th Edition, EMEA Edition. New York: Wiley.
# A short summary of the variables
summary(STAT210example5.6)
# Get several plots next to each other
par(mfrow = c(1, 3))
boxplot(intensity_level ~ operators, data = STAT210example5.6,
col = "lemonchiffon3")
boxplot(intensity_level ~ filter_type, data = STAT210example5.6,
col = "orchid1")
boxplot(intensity_level ~ ground_clutter, data = STAT210example5.6,
col = "whitesmoke")
# Reset to default settings
par(mfrow = c(1, 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.