├── Gruntfile.js ├── LICENSE ├── README.md ├── assets ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png ├── Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png ├── Exponential_Smoothed_signal_with_span_=_11.png ├── Exponential_Smoothed_signal_with_span_=_21.png ├── Exponential_Smoothed_signal_with_span_=_61.png ├── Mean_Average_signal_with_window_=_11.png ├── Mean_Average_signal_with_window_=_21.png ├── Mean_Average_signal_with_window_=_61.png ├── Mean_Average_signal_with_window_size_=_11.png ├── Mean_Average_signal_with_window_size_=_21.png ├── Mean_Average_signal_with_window_size_=_61.png ├── Median_Filtered_signal_with_window_=_11.png ├── Median_Filtered_signal_with_window_=_21.png ├── Median_Filtered_signal_with_window_=_61.png ├── SNP_500_Close_Price_between_2014_01_01___2015_07_11.png ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png ├── ewma-formulas.png ├── extrapolating.png ├── hodrick-prescott-filter-minimization.png ├── l_1_Trend_Signal_with_regularizer:_1.png ├── l_1_Trend_Signal_with_regularizer:_10.png ├── l_1_Trend_Signal_with_regularizer:_100.png └── qa_cartoon.jpg ├── css ├── print │ ├── paper.css │ └── pdf.css ├── reveal.css ├── reveal.min.css └── theme │ ├── README.md │ ├── beige.css │ ├── blood.css │ ├── default.css │ ├── moon.css │ ├── night.css │ ├── serif.css │ ├── simple.css │ ├── sky.css │ ├── solarized.css │ ├── source │ ├── beige.scss │ ├── blood.scss │ ├── default.scss │ ├── moon.scss │ ├── night.scss │ ├── serif.scss │ ├── simple.scss │ ├── sky.scss │ └── solarized.scss │ └── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss ├── index.html ├── js ├── reveal.js └── reveal.min.js ├── lib ├── css │ └── zenburn.css ├── font │ ├── league_gothic-webfont.eot │ ├── league_gothic-webfont.svg │ ├── league_gothic-webfont.ttf │ ├── league_gothic-webfont.woff │ └── league_gothic_license └── js │ ├── classList.js │ ├── head.min.js │ └── html5shiv.js ├── notebooks ├── .gitignore ├── Trend Estimation Methods.ipynb ├── data │ └── snp500.csv └── figures │ ├── Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.01.png │ ├── Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_15,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.001.png │ ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.008.png │ ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png │ ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_1.png │ ├── Band_pass_Filtered_Signal_with_order:_3,_cutoff_frequency:_0.01.png │ ├── Band_pass_Filtered_Signal_with_order:_4,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.01.png │ ├── Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_6,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_7,_cutoff_frequency:_0.1.png │ ├── Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png │ ├── Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.1.png │ ├── Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.15.png │ ├── Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.35.png │ ├── Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.95.png │ ├── Exponential_Smoothed_signal_with_span_=_11.png │ ├── Exponential_Smoothed_signal_with_span_=_21.png │ ├── Exponential_Smoothed_signal_with_span_=_61.png │ ├── Mean_Average_signal_with_window_=_11.png │ ├── Mean_Average_signal_with_window_=_21.png │ ├── Mean_Average_signal_with_window_=_61.png │ ├── Mean_Average_signal_with_window_size_=_11.png │ ├── Mean_Average_signal_with_window_size_=_21.png │ ├── Mean_Average_signal_with_window_size_=_61.png │ ├── Median_Filtered_signal_with_threshold_=_10.png │ ├── Median_Filtered_signal_with_threshold_=_11.png │ ├── Median_Filtered_signal_with_threshold_=_3.png │ ├── Median_Filtered_signal_with_threshold_=_31.png │ ├── Median_Filtered_signal_with_threshold_=_61.png │ ├── Median_Filtered_signal_with_window_=_11.png │ ├── Median_Filtered_signal_with_window_=_21.png │ ├── Median_Filtered_signal_with_window_=_61.png │ ├── SNP_500_Close_Price_between_2014_01_01___2015_07_11.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_100.0.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.0.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.0.png │ ├── Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png │ ├── copy.sh │ ├── l_1_Trend_Signal_with_regularizer:_1.png │ ├── l_1_Trend_Signal_with_regularizer:_10.png │ └── l_1_Trend_Signal_with_regularizer:_100.png ├── package.json ├── plugin ├── highlight │ └── highlight.js ├── leap │ └── leap.js ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js ├── math │ └── math.js ├── multiplex │ ├── client.js │ ├── index.js │ └── master.js ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html ├── notes │ ├── notes.html │ └── notes.js ├── postmessage │ ├── example.html │ └── postmessage.js ├── print-pdf │ └── print-pdf.js ├── remotes │ └── remotes.js ├── search │ └── search.js └── zoom-js │ └── zoom.js └── test ├── examples ├── assets │ ├── image1.png │ └── image2.png ├── barebones.html ├── embedded-media.html ├── math.html └── slide-backgrounds.html ├── qunit-1.12.0.css ├── qunit-1.12.0.js ├── test-markdown-element-attributes.html ├── test-markdown-element-attributes.js ├── test-markdown-slide-attributes.html ├── test-markdown-slide-attributes.js ├── test-markdown.html ├── test-markdown.js ├── test.html └── test.js /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/README.md -------------------------------------------------------------------------------- /assets/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /assets/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /assets/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /assets/Exponential_Smoothed_signal_with_span_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Exponential_Smoothed_signal_with_span_=_11.png -------------------------------------------------------------------------------- /assets/Exponential_Smoothed_signal_with_span_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Exponential_Smoothed_signal_with_span_=_21.png -------------------------------------------------------------------------------- /assets/Exponential_Smoothed_signal_with_span_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Exponential_Smoothed_signal_with_span_=_61.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_=_11.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_=_21.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_=_61.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_size_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_size_=_11.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_size_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_size_=_21.png -------------------------------------------------------------------------------- /assets/Mean_Average_signal_with_window_size_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Mean_Average_signal_with_window_size_=_61.png -------------------------------------------------------------------------------- /assets/Median_Filtered_signal_with_window_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Median_Filtered_signal_with_window_=_11.png -------------------------------------------------------------------------------- /assets/Median_Filtered_signal_with_window_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Median_Filtered_signal_with_window_=_21.png -------------------------------------------------------------------------------- /assets/Median_Filtered_signal_with_window_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Median_Filtered_signal_with_window_=_61.png -------------------------------------------------------------------------------- /assets/SNP_500_Close_Price_between_2014_01_01___2015_07_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/SNP_500_Close_Price_between_2014_01_01___2015_07_11.png -------------------------------------------------------------------------------- /assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png -------------------------------------------------------------------------------- /assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png -------------------------------------------------------------------------------- /assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png -------------------------------------------------------------------------------- /assets/ewma-formulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/ewma-formulas.png -------------------------------------------------------------------------------- /assets/extrapolating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/extrapolating.png -------------------------------------------------------------------------------- /assets/hodrick-prescott-filter-minimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/hodrick-prescott-filter-minimization.png -------------------------------------------------------------------------------- /assets/l_1_Trend_Signal_with_regularizer:_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/l_1_Trend_Signal_with_regularizer:_1.png -------------------------------------------------------------------------------- /assets/l_1_Trend_Signal_with_regularizer:_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/l_1_Trend_Signal_with_regularizer:_10.png -------------------------------------------------------------------------------- /assets/l_1_Trend_Signal_with_regularizer:_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/l_1_Trend_Signal_with_regularizer:_100.png -------------------------------------------------------------------------------- /assets/qa_cartoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/assets/qa_cartoon.jpg -------------------------------------------------------------------------------- /css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/print/paper.css -------------------------------------------------------------------------------- /css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/print/pdf.css -------------------------------------------------------------------------------- /css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/reveal.css -------------------------------------------------------------------------------- /css/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/reveal.min.css -------------------------------------------------------------------------------- /css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/README.md -------------------------------------------------------------------------------- /css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/beige.css -------------------------------------------------------------------------------- /css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/blood.css -------------------------------------------------------------------------------- /css/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/default.css -------------------------------------------------------------------------------- /css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/moon.css -------------------------------------------------------------------------------- /css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/night.css -------------------------------------------------------------------------------- /css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/serif.css -------------------------------------------------------------------------------- /css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/simple.css -------------------------------------------------------------------------------- /css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/sky.css -------------------------------------------------------------------------------- /css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/solarized.css -------------------------------------------------------------------------------- /css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/beige.scss -------------------------------------------------------------------------------- /css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/blood.scss -------------------------------------------------------------------------------- /css/theme/source/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/default.scss -------------------------------------------------------------------------------- /css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/moon.scss -------------------------------------------------------------------------------- /css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/night.scss -------------------------------------------------------------------------------- /css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/serif.scss -------------------------------------------------------------------------------- /css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/simple.scss -------------------------------------------------------------------------------- /css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/sky.scss -------------------------------------------------------------------------------- /css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/template/settings.scss -------------------------------------------------------------------------------- /css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/css/theme/template/theme.scss -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/index.html -------------------------------------------------------------------------------- /js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/js/reveal.js -------------------------------------------------------------------------------- /js/reveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/js/reveal.min.js -------------------------------------------------------------------------------- /lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/css/zenburn.css -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/font/league_gothic-webfont.svg -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /lib/font/league_gothic_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/font/league_gothic_license -------------------------------------------------------------------------------- /lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/js/classList.js -------------------------------------------------------------------------------- /lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/js/head.min.js -------------------------------------------------------------------------------- /lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/lib/js/html5shiv.js -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /notebooks/Trend Estimation Methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/Trend Estimation Methods.ipynb -------------------------------------------------------------------------------- /notebooks/data/snp500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/data/snp500.csv -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_10,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_15,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_15,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.001.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.008.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_2,_cutoff_frequency:_1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_3,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_3,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_4,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_4,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_5,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_6,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_6,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_7,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_7,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.01.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_Filtered_Signal_with_order:_8,_cutoff_frequency:_0.1.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.15.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.35.png -------------------------------------------------------------------------------- /notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Band_pass_order:_2,_low___high_cutoff_frequency:_0.001___0.95.png -------------------------------------------------------------------------------- /notebooks/figures/Exponential_Smoothed_signal_with_span_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Exponential_Smoothed_signal_with_span_=_11.png -------------------------------------------------------------------------------- /notebooks/figures/Exponential_Smoothed_signal_with_span_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Exponential_Smoothed_signal_with_span_=_21.png -------------------------------------------------------------------------------- /notebooks/figures/Exponential_Smoothed_signal_with_span_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Exponential_Smoothed_signal_with_span_=_61.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_=_11.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_=_21.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_=_61.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_size_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_size_=_11.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_size_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_size_=_21.png -------------------------------------------------------------------------------- /notebooks/figures/Mean_Average_signal_with_window_size_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Mean_Average_signal_with_window_size_=_61.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_threshold_=_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_threshold_=_10.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_threshold_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_threshold_=_11.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_threshold_=_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_threshold_=_3.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_threshold_=_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_threshold_=_31.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_threshold_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_threshold_=_61.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_window_=_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_window_=_11.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_window_=_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_window_=_21.png -------------------------------------------------------------------------------- /notebooks/figures/Median_Filtered_signal_with_window_=_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Median_Filtered_signal_with_window_=_61.png -------------------------------------------------------------------------------- /notebooks/figures/SNP_500_Close_Price_between_2014_01_01___2015_07_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/SNP_500_Close_Price_between_2014_01_01___2015_07_11.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_10.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_100.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_100.0.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.0.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.0.png -------------------------------------------------------------------------------- /notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/Trend_and_Cycle_Signal_with_smoothing_parameter:_1000000.png -------------------------------------------------------------------------------- /notebooks/figures/copy.sh: -------------------------------------------------------------------------------- 1 | cp *.png ../../pydata-seattle-2015/assets/ 2 | -------------------------------------------------------------------------------- /notebooks/figures/l_1_Trend_Signal_with_regularizer:_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/l_1_Trend_Signal_with_regularizer:_1.png -------------------------------------------------------------------------------- /notebooks/figures/l_1_Trend_Signal_with_regularizer:_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/l_1_Trend_Signal_with_regularizer:_10.png -------------------------------------------------------------------------------- /notebooks/figures/l_1_Trend_Signal_with_regularizer:_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/notebooks/figures/l_1_Trend_Signal_with_regularizer:_100.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/package.json -------------------------------------------------------------------------------- /plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/leap/leap.js -------------------------------------------------------------------------------- /plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/markdown/example.html -------------------------------------------------------------------------------- /plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/markdown/example.md -------------------------------------------------------------------------------- /plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/markdown/marked.js -------------------------------------------------------------------------------- /plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/math/math.js -------------------------------------------------------------------------------- /plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/multiplex/client.js -------------------------------------------------------------------------------- /plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/multiplex/index.js -------------------------------------------------------------------------------- /plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/multiplex/master.js -------------------------------------------------------------------------------- /plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/notes-server/client.js -------------------------------------------------------------------------------- /plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/notes-server/index.js -------------------------------------------------------------------------------- /plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/notes/notes.html -------------------------------------------------------------------------------- /plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/notes/notes.js -------------------------------------------------------------------------------- /plugin/postmessage/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/postmessage/example.html -------------------------------------------------------------------------------- /plugin/postmessage/postmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/postmessage/postmessage.js -------------------------------------------------------------------------------- /plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/search/search.js -------------------------------------------------------------------------------- /plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/assets/image1.png -------------------------------------------------------------------------------- /test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/assets/image2.png -------------------------------------------------------------------------------- /test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/barebones.html -------------------------------------------------------------------------------- /test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/embedded-media.html -------------------------------------------------------------------------------- /test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/math.html -------------------------------------------------------------------------------- /test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown.html -------------------------------------------------------------------------------- /test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test-markdown.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugra/pydata-seattle-2015/HEAD/test/test.js --------------------------------------------------------------------------------