Created
April 10, 2020 21:33
-
-
Save asubb/f0394107583be3be69e2e3e0d264a04f to your computer and use it in GitHub Desktop.
wave-blog/using-jupyter/long.signal.query.plot.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val df1 = fftData("fft-triangular", freqCutOff = 10 to 3800) | |
lets_plot(df1) {x = "time"; y = "freq"; fill = "value"} + | |
ggsize(1000, 600) + | |
geom_tile() + | |
scale_fill_gradient(low = "light_green", high = "red") | |
val df2 = fftData("fft-hamming", freqCutOff = 10 to 3800) | |
lets_plot(df2) {x = "time"; y = "freq"; fill = "value"} + | |
ggsize(1000, 600) + | |
geom_tile() + | |
scale_fill_gradient(low = "light_green", high = "red") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment