├── README.md ├── animate_with_r ├── animation_examples.R ├── data │ └── GDP.csv ├── gapminder_example.R ├── gganimate_example.R ├── good_bad_examples.R ├── html │ ├── .ipynb_checkpoints │ │ └── index-checkpoint.html │ ├── css │ │ ├── reset.css │ │ ├── scianimator.blue.css │ │ ├── scianimator.css │ │ ├── scianimator.dark.css │ │ ├── scianimator.light.css │ │ └── styles.css │ ├── datasauRus.html │ ├── images │ │ ├── Rplot1.png │ │ ├── Rplot10.png │ │ ├── Rplot11.png │ │ ├── Rplot12.png │ │ ├── Rplot13.png │ │ ├── Rplot14.png │ │ ├── Rplot15.png │ │ ├── Rplot16.png │ │ ├── Rplot17.png │ │ ├── Rplot18.png │ │ ├── Rplot19.png │ │ ├── Rplot2.png │ │ ├── Rplot20.png │ │ ├── Rplot21.png │ │ ├── Rplot22.png │ │ ├── Rplot23.png │ │ ├── Rplot24.png │ │ ├── Rplot25.png │ │ ├── Rplot26.png │ │ ├── Rplot27.png │ │ ├── Rplot28.png │ │ ├── Rplot29.png │ │ ├── Rplot3.png │ │ ├── Rplot30.png │ │ ├── Rplot31.png │ │ ├── Rplot32.png │ │ ├── Rplot33.png │ │ ├── Rplot34.png │ │ ├── Rplot35.png │ │ ├── Rplot36.png │ │ ├── Rplot37.png │ │ ├── Rplot38.png │ │ ├── Rplot39.png │ │ ├── Rplot4.png │ │ ├── Rplot40.png │ │ ├── Rplot41.png │ │ ├── Rplot42.png │ │ ├── Rplot43.png │ │ ├── Rplot44.png │ │ ├── Rplot5.png │ │ ├── Rplot6.png │ │ ├── Rplot7.png │ │ ├── Rplot8.png │ │ └── Rplot9.png │ ├── index.html │ ├── js │ │ ├── Rplot.js │ │ ├── jquery-1.4.4.min.js │ │ └── jquery.scianimator.min.js │ └── least_squares │ │ ├── css │ │ ├── reset.css │ │ ├── scianimator.blue.css │ │ ├── scianimator.css │ │ ├── scianimator.dark.css │ │ ├── scianimator.light.css │ │ └── styles.css │ │ ├── images │ │ ├── Rplot1.png │ │ ├── Rplot10.png │ │ ├── Rplot11.png │ │ ├── Rplot12.png │ │ ├── Rplot13.png │ │ ├── Rplot14.png │ │ ├── Rplot15.png │ │ ├── Rplot16.png │ │ ├── Rplot17.png │ │ ├── Rplot18.png │ │ ├── Rplot19.png │ │ ├── Rplot2.png │ │ ├── Rplot20.png │ │ ├── Rplot21.png │ │ ├── Rplot22.png │ │ ├── Rplot23.png │ │ ├── Rplot24.png │ │ ├── Rplot25.png │ │ ├── Rplot26.png │ │ ├── Rplot27.png │ │ ├── Rplot28.png │ │ ├── Rplot29.png │ │ ├── Rplot3.png │ │ ├── Rplot30.png │ │ ├── Rplot31.png │ │ ├── Rplot32.png │ │ ├── Rplot33.png │ │ ├── Rplot34.png │ │ ├── Rplot35.png │ │ ├── Rplot36.png │ │ ├── Rplot37.png │ │ ├── Rplot38.png │ │ ├── Rplot39.png │ │ ├── Rplot4.png │ │ ├── Rplot40.png │ │ ├── Rplot41.png │ │ ├── Rplot42.png │ │ ├── Rplot43.png │ │ ├── Rplot44.png │ │ ├── Rplot45.png │ │ ├── Rplot46.png │ │ ├── Rplot47.png │ │ ├── Rplot48.png │ │ ├── Rplot49.png │ │ ├── Rplot5.png │ │ ├── Rplot50.png │ │ ├── Rplot6.png │ │ ├── Rplot7.png │ │ ├── Rplot8.png │ │ └── Rplot9.png │ │ ├── index.html │ │ └── js │ │ ├── Rplot.js │ │ ├── jquery-1.4.4.min.js │ │ └── jquery.scianimator.min.js └── plotly_example.R ├── covid19 ├── covid19.R └── covid_plot.png ├── dictionary └── dictionary_analysis.R ├── face_cv ├── .ipynb_checkpoints │ └── face_cv_practice-checkpoint.ipynb ├── face_cv_practice.ipynb └── haar.xml ├── fractals └── fractal.R ├── learn_r ├── RMarkdown Example │ └── RMarkdown_Example.Rmd ├── Start Here.R ├── Tidyverse.R └── shiny-server │ └── Example_Shiny_App │ └── app.R ├── number_knock_out_solver ├── solver.R └── solver_support.R ├── pi └── sim_pi.R ├── sierpinski_triangle └── sierpinski_triangle.R ├── small_probs └── analysis.R ├── stonks ├── remote_work_plot.png └── stock_analysis_tidyquant.R ├── strange_attractors ├── clifford_R.RData ├── clifford_R.mp4 ├── clifford_cpp.png ├── strange_attractor_anamation.R └── strange_attractor_functions.R └── taleb_silver_article ├── analysis.R ├── data ├── 538_2016.json └── presidential_polls.csv └── graphs ├── fte_basic.png ├── nfl_senate.png └── silver_taleb_diff.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/README.md -------------------------------------------------------------------------------- /animate_with_r/animation_examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/animation_examples.R -------------------------------------------------------------------------------- /animate_with_r/data/GDP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/data/GDP.csv -------------------------------------------------------------------------------- /animate_with_r/gapminder_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/gapminder_example.R -------------------------------------------------------------------------------- /animate_with_r/gganimate_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/gganimate_example.R -------------------------------------------------------------------------------- /animate_with_r/good_bad_examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/good_bad_examples.R -------------------------------------------------------------------------------- /animate_with_r/html/.ipynb_checkpoints/index-checkpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/.ipynb_checkpoints/index-checkpoint.html -------------------------------------------------------------------------------- /animate_with_r/html/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/css/reset.css -------------------------------------------------------------------------------- /animate_with_r/html/css/scianimator.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/css/scianimator.blue.css -------------------------------------------------------------------------------- /animate_with_r/html/css/scianimator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/css/scianimator.css -------------------------------------------------------------------------------- /animate_with_r/html/css/scianimator.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/css/scianimator.dark.css -------------------------------------------------------------------------------- /animate_with_r/html/css/scianimator.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/css/scianimator.light.css -------------------------------------------------------------------------------- /animate_with_r/html/css/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 20px; 3 | } -------------------------------------------------------------------------------- /animate_with_r/html/datasauRus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/datasauRus.html -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot1.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot10.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot11.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot12.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot13.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot14.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot15.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot16.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot17.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot18.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot19.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot2.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot20.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot21.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot22.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot23.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot24.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot25.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot26.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot27.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot28.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot29.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot3.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot30.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot31.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot32.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot33.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot34.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot35.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot36.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot37.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot38.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot39.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot4.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot40.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot41.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot42.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot43.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot44.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot5.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot6.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot7.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot8.png -------------------------------------------------------------------------------- /animate_with_r/html/images/Rplot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/images/Rplot9.png -------------------------------------------------------------------------------- /animate_with_r/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/index.html -------------------------------------------------------------------------------- /animate_with_r/html/js/Rplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/js/Rplot.js -------------------------------------------------------------------------------- /animate_with_r/html/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /animate_with_r/html/js/jquery.scianimator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/js/jquery.scianimator.min.js -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/css/reset.css -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/scianimator.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/css/scianimator.blue.css -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/scianimator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/css/scianimator.css -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/scianimator.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/css/scianimator.dark.css -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/scianimator.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/css/scianimator.light.css -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/css/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 20px; 3 | } -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot1.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot10.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot11.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot12.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot13.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot14.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot15.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot16.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot17.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot18.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot19.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot2.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot20.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot21.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot22.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot23.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot24.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot25.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot26.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot27.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot28.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot29.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot3.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot30.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot31.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot32.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot33.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot34.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot35.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot36.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot37.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot38.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot39.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot4.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot40.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot41.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot42.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot43.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot44.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot45.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot46.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot47.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot48.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot49.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot5.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot50.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot6.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot7.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot8.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/images/Rplot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/images/Rplot9.png -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/index.html -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/js/Rplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/js/Rplot.js -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /animate_with_r/html/least_squares/js/jquery.scianimator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/html/least_squares/js/jquery.scianimator.min.js -------------------------------------------------------------------------------- /animate_with_r/plotly_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/animate_with_r/plotly_example.R -------------------------------------------------------------------------------- /covid19/covid19.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/covid19/covid19.R -------------------------------------------------------------------------------- /covid19/covid_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/covid19/covid_plot.png -------------------------------------------------------------------------------- /dictionary/dictionary_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/dictionary/dictionary_analysis.R -------------------------------------------------------------------------------- /face_cv/.ipynb_checkpoints/face_cv_practice-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/face_cv/.ipynb_checkpoints/face_cv_practice-checkpoint.ipynb -------------------------------------------------------------------------------- /face_cv/face_cv_practice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/face_cv/face_cv_practice.ipynb -------------------------------------------------------------------------------- /face_cv/haar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/face_cv/haar.xml -------------------------------------------------------------------------------- /fractals/fractal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/fractals/fractal.R -------------------------------------------------------------------------------- /learn_r/RMarkdown Example/RMarkdown_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/learn_r/RMarkdown Example/RMarkdown_Example.Rmd -------------------------------------------------------------------------------- /learn_r/Start Here.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/learn_r/Start Here.R -------------------------------------------------------------------------------- /learn_r/Tidyverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/learn_r/Tidyverse.R -------------------------------------------------------------------------------- /learn_r/shiny-server/Example_Shiny_App/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/learn_r/shiny-server/Example_Shiny_App/app.R -------------------------------------------------------------------------------- /number_knock_out_solver/solver.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/number_knock_out_solver/solver.R -------------------------------------------------------------------------------- /number_knock_out_solver/solver_support.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/number_knock_out_solver/solver_support.R -------------------------------------------------------------------------------- /pi/sim_pi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/pi/sim_pi.R -------------------------------------------------------------------------------- /sierpinski_triangle/sierpinski_triangle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/sierpinski_triangle/sierpinski_triangle.R -------------------------------------------------------------------------------- /small_probs/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/small_probs/analysis.R -------------------------------------------------------------------------------- /stonks/remote_work_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/stonks/remote_work_plot.png -------------------------------------------------------------------------------- /stonks/stock_analysis_tidyquant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/stonks/stock_analysis_tidyquant.R -------------------------------------------------------------------------------- /strange_attractors/clifford_R.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/strange_attractors/clifford_R.RData -------------------------------------------------------------------------------- /strange_attractors/clifford_R.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/strange_attractors/clifford_R.mp4 -------------------------------------------------------------------------------- /strange_attractors/clifford_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/strange_attractors/clifford_cpp.png -------------------------------------------------------------------------------- /strange_attractors/strange_attractor_anamation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/strange_attractors/strange_attractor_anamation.R -------------------------------------------------------------------------------- /strange_attractors/strange_attractor_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/strange_attractors/strange_attractor_functions.R -------------------------------------------------------------------------------- /taleb_silver_article/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/analysis.R -------------------------------------------------------------------------------- /taleb_silver_article/data/538_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/data/538_2016.json -------------------------------------------------------------------------------- /taleb_silver_article/data/presidential_polls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/data/presidential_polls.csv -------------------------------------------------------------------------------- /taleb_silver_article/graphs/fte_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/graphs/fte_basic.png -------------------------------------------------------------------------------- /taleb_silver_article/graphs/nfl_senate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/graphs/nfl_senate.png -------------------------------------------------------------------------------- /taleb_silver_article/graphs/silver_taleb_diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacfab/tinker/HEAD/taleb_silver_article/graphs/silver_taleb_diff.pdf --------------------------------------------------------------------------------