I was computing a quad equation using A, B, C variables with assigned values.
When I gained the answer, that being, when it calculate the value of X successfully, I then stupidly assigned this value to X itself.. like this 'X <- 0.6289' .
My problem is, now every time I alter the variable values (a, b, c) X does not change in relation.
I have managed to remove X from the list of variables present in the environment section. However I still unsure how to turn X back into it's former, vacant, self.
Hi Bombe, I'd always just clear the environment and start again with a blank slate: either use the broom in RStudio or, when in doubt, restart R. Could you share the code that you were using? There are lots of ways that you might be evaluating a polynomial, and it's hard to give any more advice without knowing what you have so far.