I am making a plot as follows:
plot(df$time,df$response,type='o',ylim=c(2.1,2.8),col='black',xlab='Time (h)',ylab='response(L)')
points(df$time,df$res,type='o',col='black')
points(df$time,df$res,type='o',col='black')
here I used type='o'
to indicate that the lines are with circles at each time point. But I wish to replace the circles with numbers. Like the first line is 1, the second is 2, and the third is 3. Is there a way to realized this?