Hello,
I have a plot with made with PyPlot I would like to customize adding levels of data. The base of the plot is this (the R’s equivalent to the high-level drawing):
This was obtained with the call:
where soln is an the result obtained with DifferentialEquations.jl. To note that the colours are automatic and I defined the legend as legend(["Bacteria (total)", "Phages"], loc="lower right"). I then wanted to add some dots on specific locations of the plot so – since I understand that PyPlot does not have the concept of high-level drawing but superimposes plots – I added a second call
where soln_point is a subset of the previous object; and I obtained:
My questions are:
how can I show only the points?
Can I show only the contour of the points?
how can I choose the colour (so that they can match those of the primary plot)? If I add the parameter , color = ["blue", "orange"] I get an error when saving the plot.
Thank you
What I miss I the open markers…
from this matplotplb site, looks like there are no open ones… but on this post, looks like it is possible, only the syntax does not work in Julia…