showdata {boxfilter} | R Documentation |
Shows a graph of the data and its change over time.Called by boxclip()
showdata(x,y)
x |
The x-axis of data, a datetime for example. |
y |
The y-axis of data, probably noisy. |
Asks the user whether to continue or not.Continue only if you want points to be deleted
Thomas Ruf (thomas.p.ruf@me.com)
set.seed(1234)
y=runif(1000,20,30)
ix=sample(1:1000,50)
y[ix]=runif(50,60,70)
showdata(1:1000,y)