I have a graph that was smoothed using Scatter.Smooth
function. I need to get the co-ordinates given the X-axis being the date.
The smoothed curve is generated in Knime R Node. I want the points so as to use it in a Line Plot node.
Is there any other method to get the values from the generated graph to line plot in Knime?
Update
I have added the R code that I used to generate the smooth curve in R node
plot(x,y)
scatter.smooth(x,y)
//x<- Date
//y <- Frequency
//Basically the values are from the Data file in another node. For simplicity I have mentioned it as comments