the pipe %>% sends d as the first parameter to select already, so you would omit the explicit d if you are using the pipe, or else dont use the pipe and use the explicit version
either
d1TR <- select(d, -exactitude)
or
d1TR <- d %>% select( -exactitude)