Supplementary material for Hands-On Machine Learning with R, an applied book covering the fundamentals of machine learning with R.
Creative Commons Attribution Share Alike 4.0 International
229
stars
88
forks
source link
Unnecessary pattern in 3.8.3 #70
Open
guidothekp opened 1 year ago
In section 3.8.3 an example is shown on how to put the process together. The following is the snippet of code:
In the step,
step_integer(matches("Qual|Cond|QC|Qu"))
the patternQual
is unnecessary as it is already covered byQu
. We can verify this:The pattern
Qu
includesQual
.