I wanted to plot only the samples that, in the whole given X-range they have at least a 0 value, but still be able to plot, to see if the Y=0 is only in a point or continuous along the X.
Until now I was trying it by filtering the data like this:
data_0values <- data[data$value %in% c(0),]
That gives me the amount of samples that have 0, but when plotting, it only plots across the 0, so I cannot know which one has other values in that X-range.
Which would be the best way of doing that?