Hi,
I have this situation:
função_partes = function(x) {
ifelse (x < -1, -x, ifelse(x > 1, x, -(x^2)))
}
I wanna create a graphy (preferably ggplot) showing the resulting of the "função_partes".
The graphycs that i've been created dont respect de boundry of the function.
Can you helpe me?