The code below plot two graphic in the vertical, but the options (axes_labels=['x','y'] and gridlines="minor") of graf1 no display. how to solve?
y = sin(x)*x; g = cos(x)*x; graf1 = plot(y,(x,0,10),legend_label=y, axes_labels=['x','y'],color = "red",gridlines="minor",thickness=1,figsize=(6, 5),plot_points=20,marker="o",markersize=3) graf2 = plot(g,(x,0,10),legend_label=g, axes_labels=['x','y'],color = "blue",gridlines="minor",thickness=1,figsize=(6, 5),plot_points=20,marker="*",markersize=3) graphics_array([[graf1], [graf2]]) -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
