Hi everyone,
I’m trying to do math modeling based on a differential equation. I’m figuring out the parameters that make the graph matched the supported data. In order to see the fitness, I’d like to do overlapping graphs of the plotted curve and the scatter plots. How can I assess it?
p2=plot(sol, xlims=(-1,25),
ylims=(-0.1,1.1),
xticks = 0:4:24,)
p1=scatter(
pulse,
figure6b,
xlims=(-1,25),
ylims=(-0.1,1.1),
xticks = 0:4:24
)
plot!(p1,p2)
The plot! resulted in two adjacent graphs which is not my desired graph.