I try to perform data analysis on wind power production. Data consist in 17520 points, corresponding to the production averaged over 30 minutes over the 365 days of the year.
I somehow expect to see a periodic pattern, at least some day/night variations (1/2 day period). However, I don't see any frequency single out in the Fourier spectrum.
Am I doing something wrong or are data just flat noise ?
Data are (hopefully) available here
NbPt = Length[dataWind]
dt = 1/48;
time = dt*NbPt;
wgrid = RotateRight[1/(NbPt*dt)*Range[-(NbPt/2), NbPt/2 - 1], NbPt/2];
SF = Transpose[{wgrid, Abs[Fourier[dataWind]]}]
ListPlot[SF, Joined -> True, PlotRange -> {{-2, 2}, All},
Frame -> True]
