Hi i have used a below codes to generate plot.
p2 = ggplot(data= s2_df1, aes(x= time)) +
geom_line(aes(y=cp), size = 1) +
geom_point(aes( y = obs_conc), size = 1)
p2
i have got the below plot
i want the the ilnes to be connected between each gaps, and look like one continuous line.
can someone help me to do this.
Thanks