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?
340 Views Asked by tornadogal At
1
There are 1 best solutions below
Related Questions in TIME-SERIES
- How to best compress timeseries into a different duration?
- Calculating the difference in dates in a Pandas GroupBy object
- Simple Python Median Filter for time series
- Converting time series to data frame, matrix, or table
- Highstock time series navigator blank
- How to compute relative difference in a circular domain (weekday) in R
- How to store and retrieve time series using google appengine using python
- Plotting multivariate time-series data in R
- Reintroduction of AR and GARCH processes in MATLAB
- value from a past, potentially missing month in dataframe
- Forecasting an Arima Model in R Returning Strange Error
- computed initial MA coefficients are not invertible [Python] [TSA] [ARIMAX] [CrossValidation]
- Load local dataset into Python 3.4 Pandas statsmodel for Time Series
- Combining time series data into a single data frame
- Plotting Probability Density Heatmap Over Time in R
Related Questions in WAVELET
- Continuous wavelet transform pitch shifting
- What are the equivalent to Matlab's ddencmp and wdencmp functions in python
- C algorithm for Matlab code wden (wavelet denoising)
- band filtering based on PSD, to filter out frequency domains in r, probably using "buttord" from signal
- Gabor filter - parameters values and feature extraction in openCv
- Python-numpy...how to reduce run time?
- feature extraction for machine learning
- CDF 9/7 Discrete Wavelet Transform (Convolution)
- writing coeffcients to a wavelet packet tree in MATLAB
- Can I run a GA to optimize wavelet transform?
- inverse continuous wavelet transform and [Parm] in cwtft
- ValueError: Input array has fewer dimensions than the specified axes
- what are difference wavelet inverse transformation and wavelet transformation
- Strange values for approximating coefficients in wavelet decompsition in Matlab
- Wavelet decomposition for non-uniform 2D data sequences
Related Questions in WAVELET-TRANSFORM
- Continuous Haar Wavelet for Python
- inverse continuous wavelet transform and [Parm] in cwtft
- what are difference wavelet inverse transformation and wavelet transformation
- Compute DWT coefficients to denoise eeg signal
- Denoise EEG signal by using Daubechies function
- Interpreting a wavelet transform produced using scipy.signal.cwt
- trouble with r peak detection using discrete wavelt transform
- How do you use map() to apply function to data frame, when function calls for specific column input in R?
- How to define my own continuous wavelet by using Python?
- Is it possible to compute the discrete wavelet transform by convolving the input signal with a specific wavelet (at different scales) in MATLAB/python
- Converting 2d array to image using colormap
- How can I further analyze high frequency data from discrete wavelet transform?
- Continuous morlet wavelet transform using pywt
- How can I contain coefficients from the Stationary Wavelet Transform into a column of a variable?
- how to use the filter in the time domain to filtering the image?
Related Questions in DISCRETE
- Can I analyze non-varying-across-individual alternative-specific attribute variables?
- Creating a Folium Map Using Non-numerical data using discrete color
- How to change the order and size of the labels in R?
- SYCL GPU device query - Is the GPU device is discrete or integtated?
- Question about transition matrix Q in D3PM diffusion model for discrete state space
- Categorical raster not displaying properly when using MoveVis package
- how to combine discrete and continuous features in hmmlearn?
- Error: Discrete value supplied to a continuous scale
- Orange DM: How does Orange calculates the euclidean distance for categorical data?
- How can i prove this discrete math challenge?
- Standardizing or Normalizing discrete variable?
- How to fit discrete distribution (boltzmann) to large dataset?
- Replacement subjects stop for no reason in Anylogic
- xarray discrete scatter plot: specifying legend/colour order
- How can I further analyze high frequency data from discrete wavelet transform?
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 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.