First time here? Check out the FAQ!
answered 8 years ago
You can concatenate graphics objects:
G = Graphics() G += points(AN, legend_label = 'AN', color = 'green') G += points(BN, legend_label = 'S(t)', color = 'blue') G += points(RN, legend_label = 'RN', color = 'red') G.show()