I want to practice this tutorial https://www.guru99.com/r-k-means-clustering.html but I stuck with this code
rescale_df <- df % > %
mutate(price_scal = scale(price),
hd_scal = scale(hd),
ram_scal = scale(ram),
screen_scal = scale(screen),
ads_scal = scale(ads),
trend_scal = scale(trend)) % > %
select(-c(price, speed, hd, ram, screen, ads, trend))
Error in df % > % mutate(price_scal = scale(price), hd_scal = scale(hd), :
could not find function "% > %"