Leonardo,
You can use NDSolve to get the numerical solution and plot that. I notice you do not give the initial conditions, you can use ParametricNDSolve to give different solutions for a variety of starting points.
Regards,
Neil
Solve will not give solutions for y in terms of symbolic x, but you get a solution for y when x is numeric:
Solve
y
x
explicitSol[x_] := y /. Solve[E^(2 y) x - Sin[x y] + y^2 == 2 && 0 < y < 1, y]; Plot[explicitSol[x], {x, 0, 1}]
Thanks a lot!
Wasn't what I was looking for, but it helps!