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 (%)
यह अभ्यास पाठ्यक्रम का हिस्सा है
Introduction to Anomaly Detection in R
अभ्यास निर्देश
- Produce a scatter plot of
pHandalcoholwithpHas the y-axis variable.
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# View the contents of the wine data
head(wine)
# Scatterplot of wine pH against alcohol
plot(___ ~ ___, data = ___)