Exploring wine
Throughout this chapter, you'll explore techniques for anomaly detection with a new data set called wine
. Each row of this data set refers to a wine whose chemical composition is described by two numeric fields:
pH
: how acidic the wine isalcohol
: the wine's alcohol content (%)
Este ejercicio forma parte del curso
Introduction to Anomaly Detection in R
Instrucciones del ejercicio
- Produce a scatter plot of
pH
andalcohol
withpH
as the y-axis variable.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# View the contents of the wine data
head(wine)
# Scatterplot of wine pH against alcohol
plot(___ ~ ___, data = ___)