I applied a discrete wavelet transform to horizontal wind speed data to receive the below plot. I'm basically trying to use the information from the detail coefficient (the turbulent flow) for further analysis, but I'm not sure the best direction to go in. I don't have much experience with Wavelet Transform, so forgive me if there are obvious options, but the examples I've seen usually discard the higher frequency information since it's the noise of the signal. Is there anything further I can do with this discrete wavelet transform like statistic analysis or forecasting?
How can I further analyze high frequency data from discrete wavelet transform?
341 Views Asked by tornadogal At
1
There are 1 best solutions below
Related Questions in TIME-SERIES
- Measures of similarity for time series data
- Is there an algorithm to identify the increasing Period/Interval of a time series?
- What kind of ARIMA model would be best fit for this data?
- How to load very big timeseries file(s) in Python to do analysis?
- How to write the query statement of the total number of time series by paging in Apache IoTDB?
- error to generate regular raster stack time series in R
- Getting NotImplementedError: While Importing ARMA
- Plotting Non-Uniform Time Series Data from a Text File
- How in SQL can I identify if a value has changed within the current week or vis-a-vis the previous week?
- LSTM : predict_step in PyTorch Lightning
- Slow SELECT statement, possibly due to WHERE?
- R: Error in tseries::garch() Function for Auto GARCH Model Detection
- LSTM multistep forecast
- Sum column depending on values from another column on a single row (Pivot columns)
- gap fill for raster stack in R
Related Questions in WAVELET
- Getting error while trying to do image inpainting using wavelet Transform
- Spectral Graph Wavelet Transform, unsure what is wrong with demo file not working
- Wavelet artifacts with basic continuous PyWavelet
- How to do scattering2D of an image file?
- Shapes (504,504) and (378,378) not aligned: 504 (dim 1) != 378 (dim 0) error in my python code for embedding a watermark
- Wavelet coefficients length not equal original signal length in Daubecheis db4 transform
- Feature extraction from wavelet subbands
- Time Series denoise use wavelet CWT in python?
- Extracting significance from (WaveletComp) wavelet in R
- right evaluation metric for signal denoising
- wavelet compression python
- Plot wavelet coherence from sequences of numbers in R
- Why Rolling Wavelet (Using Pywavelet Package) Is Not Casual?
- Wavelet: Linking Scale coefficients -> TimeStamp in DWT decomposition of time series
- Lossy pylops wavelet compression seems independent of specified mother wavelet
Related Questions in WAVELET-TRANSFORM
- Spectral Graph Wavelet Transform, unsure what is wrong with demo file not working
- Wavelet artifacts with basic continuous PyWavelet
- How pywt calculates dwt Haar coefficients?
- Wavelet Transform Graph Is Incorrect. Unsure How to Fix
- "Exception: All images must be able to be 'zoomed in' to the largest image." when using pyrtools library
- How to implement scale-dependent Gaussian averaging using Morlet wavelet envelope in Python?
- Wavelet Tresholding on R
- Interpreting a wavelet transform produced using scipy.signal.cwt
- trouble with r peak detection using discrete wavelt transform
- Plot wavelet coherence from sequences of numbers in R
- Scalogram Generation
- implementation of discrete wavelet transform
- Lossy pylops wavelet compression seems independent of specified mother wavelet
- MODWT exceeds sample size (R)
- Real-time peak detection in time series
Related Questions in DISCRETE
- Aggregate discrete frequency table in smaller table with fewer intervals
- Is my logic correct? A bit string of n with more 0s than 1s
- Calculate exponential complex sum with fft instead of summation to simulate diffraction?
- Extrapolate 2d discrete data
- Prove that (p → q) → ((r ∨ p) → (r ∨ q)) is a tautology without using truth table
- Estimating the Expected Value in R
- Why substeps affect the speed of movement on a simple verlet physics simulation?
- How to use named plotly qualitative color palette for traces in layout colorway with javascript
- Error: Discrete value supplied to a continuous scale
- how to combine discrete and continuous features in hmmlearn?
- Categorical raster not displaying properly when using MoveVis package
- Question about transition matrix Q in D3PM diffusion model for discrete state space
- SYCL GPU device query - Is the GPU device is discrete or integtated?
- How to change the order and size of the labels in R?
- Creating a Folium Map Using Non-numerical data using discrete color
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

The path to pursue really depends on the question that you are trying to answer.
First of all, I would suggest double checking that your DWT is actually doing what you expect it to do. The plot that you shared suggests that it is successful in separating the low frequency coherent (laminar?) flow from the high frequency turbulent flow, but it would be helpful to figure out which frequencies are present in the high frequency component in order to confirm that the processing parameters (e.g. decomposition level) were properly chosen.
Once convinced that your wavelet decomposition provides you with useful information about the turbulent flow, what should you do with these high pass filtered data? I suggest computing their variance over 1 hour long intervals. This is a measure of the "energy" of the signal over the chosen interval. If you are dealing with large amounts of data this would allow you to boil down your time series into a single sample per hour. Maybe you will be able to spot diurnal variations in the turbulent flow (e.g. maybe turbulent flow is higher at dawn). If you have multiple stations it would be interesting to study if the turbulence variations share the same behavior.
Before venturing into time series forecasting, I would really take a closer look at you data and try to identify trends or nail down possible outliers.
Last but not least, I would suggest posting your question on Physics Stack Exchange (e.g. https://physics.stackexchange.com/) rather than on SO.