I am wanting to plot changes in weight(X) per day(Y). I would like to label the very first datapoint, then every seventh.
I am currently using geom_point() + geom_label(aes(label = weight))
. I was thinking maybe rep()
would do this, but I can't figure out how; if it even will.