How can I extract a raw data from Mathematica? So I can re-plot on Excel. I already tried some command like Cases and ListPlot, but I don't get the results that I want.
I want to plot the following:
4738 x^2 + y (1000 + 1309 y) + x (1000 + 3333 y) = 4398

Exportwill be your friend here. – b3m2a1 Oct 05 '17 at 18:41"PNG"is a good format for this. Withp = Plot[x, {x, 0, 1}], thenSetDirectory[$UserDocumentsDirectory]; Export["plot.png", Magnify[p, 2], "PNG"]; ResetDirectory[];should do the the trick. – Edmund Oct 05 '17 at 19:04