I am trying to look at the change in NDVI over time for a polygon, and I want to have access to the NDVI values themselves, rather than chart or map them. So far, all I seem to be able to do is select a single pixel, chart the NDVI and then export the data as a CSV. This method would be extremely impractical if I wanted to do this for a polygon instead of a pixel.
var chart = ui.Chart.image.series({
imageCollection: withNDVI.select('ndvi'),
region: Point,
reducer: ee.Reducer.max(),
scale: 30
}).setOptions({title: 'NDVI over time'});
print(chart);
I'm using the above code to plot NDVI over time.