CommencerCommencez gratuitement

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 is
  • alcohol: the wine's alcohol content (%)

Cet exercice fait partie du cours

<cours>Introduction to Anomaly Detection in R</cours>
Voir le cours

Instructions de l’exercice

  • Produce a scatter plot of pH and alcohol with pH as the y-axis variable.

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# View the contents of the wine data
head(wine)

# Scatterplot of wine pH against alcohol
plot(___ ~ ___, data = ___)
Modifier et exécuter le code