├── .gitignore ├── Assignments ├── Assignment1.md ├── Assignment2.md ├── Assignment3.md ├── Assignment4.md └── README.md ├── Background ├── README.md └── figure │ ├── qplot-swiss-scatter.png │ ├── qplot-swiss-smooth.png │ └── subset-swiss-plot.png ├── DataAnalysisSyllabus.pdf ├── Lectures ├── CommonFiles │ ├── Header.txt │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Lecture1 │ ├── Lecture1.Rnw │ ├── Lecture1.pdf │ ├── Lecture1.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Lecture10 │ ├── Chi2.png │ ├── Chi2Specific.png │ ├── ExampleSLR.png │ ├── Lecture10.Rnw │ ├── Lecture10.pdf │ ├── Lecture10.tex │ ├── NonLinear.png │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── GDP1.pdf │ │ ├── GDP2.pdf │ │ ├── PerfectLinear.pdf │ │ ├── PerfectLinearExplain.pdf │ │ ├── PerfectLinearExplain2.pdf │ │ ├── PerfectLinearExplain4.pdf │ │ └── PerfectLinearExplain5.pdf ├── Lecture11 │ ├── AssumptionViolation.png │ ├── Lecture11.Rnw │ ├── Lecture11.pdf │ ├── Lecture11.tex │ ├── LinearCor.png │ ├── NonLinearCor.png │ ├── Outliers.png │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── BestFit.pdf │ │ ├── DescribeGPA.pdf │ │ ├── Extrap1.pdf │ │ ├── Extrap2.pdf │ │ ├── Extrap3.pdf │ │ ├── NormallyDistributed.pdf │ │ ├── Res1.pdf │ │ ├── Res2.pdf │ │ ├── SATFYGPA.pdf │ │ ├── SexDichot.pdf │ │ ├── SexDichot1.pdf │ │ └── SexDichot2.pdf ├── Lecture12 │ ├── Lecture12.Rnw │ ├── Lecture12.aux │ ├── Lecture12.pdf │ ├── Lecture12.tex │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ ├── cache │ │ ├── ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.RData │ │ ├── ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdb │ │ ├── ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdx │ │ ├── Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.RData │ │ ├── Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdb │ │ ├── Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdx │ │ ├── Zelig3_6491220697e8bda3435abd884388f361.RData │ │ ├── Zelig3_6491220697e8bda3435abd884388f361.rdb │ │ ├── Zelig3_6491220697e8bda3435abd884388f361.rdx │ │ └── __packages │ └── figure │ │ ├── ConfIntGraph.pdf │ │ ├── Scatter.pdf │ │ └── Zelig3.pdf ├── Lecture13 │ ├── Lecture13.Rnw │ ├── Lecture13.pdf │ ├── Lecture13.tex │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ └── PlotExpected.pdf ├── Lecture14 │ ├── Lecture14.Rnw │ ├── Lecture14.pdf │ ├── Lecture14.tex │ ├── WBMortalityDataAllYears.R │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── xtableExample │ │ ├── xtableExample.Rmd │ │ ├── xtableExample.html │ │ └── xtableExample.md ├── Lecture15 │ ├── MakeSlidify.R │ └── SlidifyHowTo │ │ ├── SlideDelimit.png │ │ ├── SlidifyHead.png │ │ ├── assets │ │ ├── css │ │ │ ├── .gitkeep │ │ │ └── ribbons.css │ │ ├── img │ │ │ └── .gitkeep │ │ ├── js │ │ │ └── .gitkeep │ │ └── layouts │ │ │ └── .gitkeep │ │ ├── figure │ │ └── unnamed-chunk-5.png │ │ ├── index.Rmd │ │ ├── index.html │ │ ├── index.md │ │ └── libraries │ │ ├── frameworks │ │ └── io2012 │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── default.css │ │ │ ├── fonts.css │ │ │ ├── phone.css │ │ │ └── slidify.css │ │ │ ├── default │ │ │ ├── css │ │ │ │ ├── default.css │ │ │ │ ├── fonts.css │ │ │ │ └── phone.css │ │ │ ├── images │ │ │ │ ├── google_developers_icon_128.png │ │ │ │ └── io2012_logo.png │ │ │ ├── js │ │ │ │ ├── hammer.js │ │ │ │ ├── modernizr.custom.45394.js │ │ │ │ ├── order.js │ │ │ │ ├── polyfills │ │ │ │ │ ├── classList.min.js │ │ │ │ │ ├── dataset.min.js │ │ │ │ │ └── history.min.js │ │ │ │ ├── prettify │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ ├── lang-clj.js │ │ │ │ │ ├── lang-css.js │ │ │ │ │ ├── lang-go.js │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ ├── lang-n.js │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ ├── lang-xq.js │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── require-1.0.8.min.js │ │ │ │ ├── slide-controller.js │ │ │ │ ├── slide-deck.js │ │ │ │ ├── slide_config.js │ │ │ │ └── slides.js │ │ │ └── layouts │ │ │ │ ├── deck.html │ │ │ │ ├── head.html │ │ │ │ ├── slide.html │ │ │ │ ├── twocol.html │ │ │ │ └── vcenter.html │ │ │ ├── images │ │ │ ├── google_developers_icon_128.png │ │ │ └── io2012_logo.png │ │ │ ├── js │ │ │ ├── hammer.js │ │ │ ├── modernizr.custom.45394.js │ │ │ ├── order.js │ │ │ ├── polyfills │ │ │ │ ├── classList.min.js │ │ │ │ ├── dataset.min.js │ │ │ │ └── history.min.js │ │ │ ├── prettify │ │ │ │ ├── lang-apollo.js │ │ │ │ ├── lang-clj.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── lang-go.js │ │ │ │ ├── lang-hs.js │ │ │ │ ├── lang-lisp.js │ │ │ │ ├── lang-lua.js │ │ │ │ ├── lang-ml.js │ │ │ │ ├── lang-n.js │ │ │ │ ├── lang-proto.js │ │ │ │ ├── lang-scala.js │ │ │ │ ├── lang-sql.js │ │ │ │ ├── lang-tex.js │ │ │ │ ├── lang-vb.js │ │ │ │ ├── lang-vhdl.js │ │ │ │ ├── lang-wiki.js │ │ │ │ ├── lang-xq.js │ │ │ │ ├── lang-yaml.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── require-1.0.8.min.js │ │ │ ├── slide-controller.js │ │ │ ├── slide-deck.js │ │ │ ├── slide_config.js │ │ │ └── slides.js │ │ │ └── layouts │ │ │ ├── deck.html │ │ │ ├── head.html │ │ │ ├── slide.html │ │ │ ├── twocol.html │ │ │ └── vcenter.html │ │ ├── highlighters │ │ └── highlight.js │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── brown_paper.css │ │ │ ├── brown_papersq.png │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── far.css │ │ │ ├── github.css │ │ │ ├── googlecode.css │ │ │ ├── hemisu-light.css │ │ │ ├── idea.css │ │ │ ├── ir_black.css │ │ │ ├── magula.css │ │ │ ├── monokai.css │ │ │ ├── pojoaque.css │ │ │ ├── pojoaque.jpg │ │ │ ├── school_book.css │ │ │ ├── school_book.png │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── xcode.css │ │ │ └── zenburn.css │ │ │ ├── highlight.js.html │ │ │ └── highlight.pack.js │ │ └── widgets │ │ └── mathjax │ │ ├── LICENSE │ │ ├── MathJax.js │ │ ├── config │ │ ├── MMLorHTML.js │ │ ├── TeX-AMS-MML_HTMLorMML.js │ │ ├── TeX-AMS-MML_SVG-full.js │ │ └── TeX-AMS-MML_SVG.js │ │ ├── extensions │ │ ├── FontWarnings.js │ │ ├── HTML-CSS │ │ │ └── handle-floats.js │ │ ├── MathEvents.js │ │ ├── MathMenu.js │ │ ├── MathZoom.js │ │ ├── TeX │ │ │ ├── AMSmath.js │ │ │ ├── AMSsymbols.js │ │ │ ├── HTML.js │ │ │ ├── action.js │ │ │ ├── autobold.js │ │ │ ├── autoload-all.js │ │ │ ├── bbox.js │ │ │ ├── begingroup.js │ │ │ ├── boldsymbol.js │ │ │ ├── cancel.js │ │ │ ├── color.js │ │ │ ├── enclose.js │ │ │ ├── extpfeil.js │ │ │ ├── mathchoice.js │ │ │ ├── mhchem.js │ │ │ ├── newcommand.js │ │ │ ├── noErrors.js │ │ │ ├── noUndefined.js │ │ │ ├── unicode.js │ │ │ └── verb.js │ │ ├── asciimath2jax.js │ │ ├── jsMath2jax.js │ │ ├── mml2jax.js │ │ ├── tex2jax.js │ │ ├── toMathML.js │ │ └── v1.0-warning.js │ │ ├── fonts │ │ └── HTML-CSS │ │ │ └── TeX │ │ │ └── otf │ │ │ ├── MathJax_AMS-Regular.otf │ │ │ ├── MathJax_Caligraphic-Bold.otf │ │ │ ├── MathJax_Caligraphic-Regular.otf │ │ │ ├── MathJax_Fraktur-Bold.otf │ │ │ ├── MathJax_Fraktur-Regular.otf │ │ │ ├── MathJax_Main-Bold.otf │ │ │ ├── MathJax_Main-Italic.otf │ │ │ ├── MathJax_Main-Regular.otf │ │ │ ├── MathJax_Math-BoldItalic.otf │ │ │ ├── MathJax_Math-Italic.otf │ │ │ ├── MathJax_Math-Regular.otf │ │ │ ├── MathJax_SansSerif-Bold.otf │ │ │ ├── MathJax_SansSerif-Italic.otf │ │ │ ├── MathJax_SansSerif-Regular.otf │ │ │ ├── MathJax_Script-Regular.otf │ │ │ ├── MathJax_Size1-Regular.otf │ │ │ ├── MathJax_Size2-Regular.otf │ │ │ ├── MathJax_Size3-Regular.otf │ │ │ ├── MathJax_Size4-Regular.otf │ │ │ ├── MathJax_Typewriter-Regular.otf │ │ │ ├── MathJax_WinChrome-Regular.otf │ │ │ └── MathJax_WinIE6-Regular.otf │ │ ├── images │ │ ├── CloseX-31.png │ │ └── MenuArrow-15.png │ │ ├── jax │ │ ├── element │ │ │ └── mml │ │ │ │ ├── jax.js │ │ │ │ └── optable │ │ │ │ ├── Arrows.js │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ ├── Dingbats.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ ├── SuppMathOperators.js │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ └── SupplementalArrowsB.js │ │ ├── input │ │ │ ├── AsciiMath │ │ │ │ ├── config.js │ │ │ │ └── jax.js │ │ │ ├── MathML │ │ │ │ ├── config.js │ │ │ │ ├── entities │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ ├── f.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── g.js │ │ │ │ │ ├── h.js │ │ │ │ │ ├── i.js │ │ │ │ │ ├── j.js │ │ │ │ │ ├── k.js │ │ │ │ │ ├── l.js │ │ │ │ │ ├── m.js │ │ │ │ │ ├── n.js │ │ │ │ │ ├── o.js │ │ │ │ │ ├── opf.js │ │ │ │ │ ├── p.js │ │ │ │ │ ├── q.js │ │ │ │ │ ├── r.js │ │ │ │ │ ├── s.js │ │ │ │ │ ├── scr.js │ │ │ │ │ ├── t.js │ │ │ │ │ ├── u.js │ │ │ │ │ ├── v.js │ │ │ │ │ ├── w.js │ │ │ │ │ ├── x.js │ │ │ │ │ ├── y.js │ │ │ │ │ └── z.js │ │ │ │ └── jax.js │ │ │ └── TeX │ │ │ │ ├── config.js │ │ │ │ └── jax.js │ │ └── output │ │ │ ├── HTML-CSS │ │ │ ├── autoload │ │ │ │ ├── annotation-xml.js │ │ │ │ ├── maction.js │ │ │ │ ├── menclose.js │ │ │ │ ├── mglyph.js │ │ │ │ ├── mmultiscripts.js │ │ │ │ ├── ms.js │ │ │ │ ├── mtable.js │ │ │ │ └── multiline.js │ │ │ ├── config.js │ │ │ ├── fonts │ │ │ │ ├── STIX │ │ │ │ │ ├── General │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ └── ij.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ │ ├── BlockElements.js │ │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ ├── CJK.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ ├── Fraktur.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ │ ├── Hiragana.js │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MathSS.js │ │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ │ ├── MathTT.js │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ ├── Specials.js │ │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ │ ├── SupplementalArrowsB.js │ │ │ │ │ │ │ └── ij.js │ │ │ │ │ ├── IntegralsD │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── IntegralsSm │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── IntegralsUp │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── IntegralsUpD │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── IntegralsUpSm │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ ├── SizeFiveSym │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SizeFourSym │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SizeOneSym │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SizeThreeSym │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SizeTwoSym │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Variants │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── fontdata-1.0.js │ │ │ │ │ ├── fontdata-beta.js │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ └── fontdata.js │ │ │ │ └── TeX │ │ │ │ │ ├── AMS │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── PUA.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ ├── Caligraphic │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ └── PUA.js │ │ │ │ │ ├── Greek │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Main │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ │ ├── Math │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SansSerif │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Typewriter │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── WinChrome │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── WinIE6 │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── AMS.js │ │ │ │ │ │ ├── Bold.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ └── fontdata.js │ │ │ ├── imageFonts.js │ │ │ └── jax.js │ │ │ ├── NativeMML │ │ │ ├── config.js │ │ │ └── jax.js │ │ │ └── SVG │ │ │ ├── autoload │ │ │ ├── annotation-xml.js │ │ │ ├── maction.js │ │ │ ├── menclose.js │ │ │ ├── mglyph.js │ │ │ ├── mmultiscripts.js │ │ │ ├── ms.js │ │ │ ├── mtable.js │ │ │ └── multiline.js │ │ │ ├── config.js │ │ │ ├── fonts │ │ │ └── TeX │ │ │ │ ├── AMS │ │ │ │ └── Regular │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── PUA.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ ├── Caligraphic │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── Other.js │ │ │ │ │ └── PUA.js │ │ │ │ ├── Main │ │ │ │ ├── Italic │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── MathOperators.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ ├── Math │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Italic │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ ├── Italic │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Typewriter │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ └── jax.js │ │ └── mathjax.html ├── Lecture2 │ ├── ExampleDataFrameFin.png │ ├── Lecture2.Rnw │ ├── Lecture2.pdf │ ├── Lecture2.tex │ ├── LevelsOfMeasurement.png │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Lecture3 │ ├── BadData.png │ ├── Confounder.png │ ├── ExplainResponse.png │ ├── IdealData.png │ ├── Lecture3.Rnw │ ├── Lecture3.pdf │ ├── Lecture3.tex │ ├── TextComma.png │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Lecture4 │ ├── CarsMarkdown.png │ ├── ChunkRStudioExamples.png │ ├── KnitHTMLButton.png │ ├── Lecture4.Rnw │ ├── Lecture4.pdf │ ├── Lecture4.tex │ ├── MarkdownTopBarLeft.png │ ├── RepSpectrum.png │ ├── SyllabusSnap.png │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ ├── htmlExample.png │ └── markdownTohtml.png ├── Lecture5 │ ├── BarChart.png │ ├── Lecture5.Rnw │ ├── Lecture5.pdf │ ├── Lecture5.tex │ ├── MultiModal.png │ ├── WDMortalitGDP.R │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── BoxPlot.pdf │ │ ├── CarsBarPlot.pdf │ │ ├── HistoAgain.pdf │ │ ├── InfantHist.pdf │ │ ├── LogTransformScatter.pdf │ │ ├── MoasicPlot.pdf │ │ ├── NormallyDistGraph.pdf │ │ ├── SDMort.pdf │ │ ├── SDNormal.pdf │ │ ├── SDNormal10.pdf │ │ ├── SDNormal30.pdf │ │ ├── Scatter1.pdf │ │ └── ScatterTransformed.pdf ├── Lecture6 │ ├── GoogleVis │ │ ├── GoogleVisLecture6.Rmd │ │ ├── GoogleVisLecture6.html │ │ └── GoogleVisLecture6.md │ ├── Lecture6.Rnw │ ├── Lecture6.pdf │ ├── Lecture6.tex │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── BadColourBar.png │ │ ├── BasicPlot.pdf │ │ ├── BasicPlotLabel.pdf │ │ ├── CirclesCompare.png │ │ ├── CirclesCompareNumbers.png │ │ ├── ColourContext.png │ │ ├── Ebbinghause.png │ │ ├── GoodColourBar.png │ │ ├── GraphCirclesComp.pdf │ │ ├── HexColorScatter.pdf │ │ ├── HexColoursScatter.pdf │ │ ├── RStudioUse.png │ │ ├── ScatterColour1.pdf │ │ ├── SimpleScatter.pdf │ │ ├── SpendPerChange.pdf │ │ ├── SpendingChange.png │ │ ├── SpendingGraph.pdf │ │ ├── ViolinPlotShow.pdf │ │ ├── ggScatterSimple.pdf │ │ └── ggScatterSimpleBlank.pdf ├── Lecture7 │ ├── Lecture7.Rnw │ ├── Lecture7.pdf │ ├── Lecture7.tex │ ├── OpenIntroData │ │ └── run10.txt │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── CIAnimation1.pdf │ │ ├── CIAnimation10.pdf │ │ ├── CIAnimation11.pdf │ │ ├── CIAnimation12.pdf │ │ ├── CIAnimation13.pdf │ │ ├── CIAnimation14.pdf │ │ ├── CIAnimation15.pdf │ │ ├── CIAnimation16.pdf │ │ ├── CIAnimation17.pdf │ │ ├── CIAnimation18.pdf │ │ ├── CIAnimation19.pdf │ │ ├── CIAnimation2.pdf │ │ ├── CIAnimation20.pdf │ │ ├── CIAnimation21.pdf │ │ ├── CIAnimation22.pdf │ │ ├── CIAnimation23.pdf │ │ ├── CIAnimation24.pdf │ │ ├── CIAnimation25.pdf │ │ ├── CIAnimation26.pdf │ │ ├── CIAnimation27.pdf │ │ ├── CIAnimation28.pdf │ │ ├── CIAnimation29.pdf │ │ ├── CIAnimation3.pdf │ │ ├── CIAnimation30.pdf │ │ ├── CIAnimation31.pdf │ │ ├── CIAnimation32.pdf │ │ ├── CIAnimation33.pdf │ │ ├── CIAnimation34.pdf │ │ ├── CIAnimation35.pdf │ │ ├── CIAnimation36.pdf │ │ ├── CIAnimation37.pdf │ │ ├── CIAnimation38.pdf │ │ ├── CIAnimation39.pdf │ │ ├── CIAnimation4.pdf │ │ ├── CIAnimation40.pdf │ │ ├── CIAnimation41.pdf │ │ ├── CIAnimation42.pdf │ │ ├── CIAnimation43.pdf │ │ ├── CIAnimation44.pdf │ │ ├── CIAnimation45.pdf │ │ ├── CIAnimation46.pdf │ │ ├── CIAnimation47.pdf │ │ ├── CIAnimation48.pdf │ │ ├── CIAnimation49.pdf │ │ ├── CIAnimation5.pdf │ │ ├── CIAnimation50.pdf │ │ ├── CIAnimation6.pdf │ │ ├── CIAnimation7.pdf │ │ ├── CIAnimation8.pdf │ │ ├── CIAnimation9.pdf │ │ ├── ConfIntPlot.pdf │ │ ├── DistPopSampMean.pdf │ │ ├── DistTimeSampleMean.pdf │ │ ├── DistTimeSampleMean5000.pdf │ │ ├── Employees3D.png │ │ ├── EmployeesFlat.png │ │ ├── HistSampAge.pdf │ │ ├── HistSampTime.pdf │ │ ├── QQPlot.pdf │ │ ├── QQPlotAge.pdf │ │ ├── QQPlotTime.pdf │ │ ├── SamplingAnimation1.pdf │ │ ├── SamplingAnimation10.pdf │ │ ├── SamplingAnimation11.pdf │ │ ├── SamplingAnimation12.pdf │ │ ├── SamplingAnimation13.pdf │ │ ├── SamplingAnimation14.pdf │ │ ├── SamplingAnimation15.pdf │ │ ├── SamplingAnimation16.pdf │ │ ├── SamplingAnimation17.pdf │ │ ├── SamplingAnimation18.pdf │ │ ├── SamplingAnimation19.pdf │ │ ├── SamplingAnimation2.pdf │ │ ├── SamplingAnimation20.pdf │ │ ├── SamplingAnimation21.pdf │ │ ├── SamplingAnimation22.pdf │ │ ├── SamplingAnimation23.pdf │ │ ├── SamplingAnimation24.pdf │ │ ├── SamplingAnimation25.pdf │ │ ├── SamplingAnimation26.pdf │ │ ├── SamplingAnimation27.pdf │ │ ├── SamplingAnimation28.pdf │ │ ├── SamplingAnimation29.pdf │ │ ├── SamplingAnimation3.pdf │ │ ├── SamplingAnimation30.pdf │ │ ├── SamplingAnimation31.pdf │ │ ├── SamplingAnimation32.pdf │ │ ├── SamplingAnimation33.pdf │ │ ├── SamplingAnimation34.pdf │ │ ├── SamplingAnimation35.pdf │ │ ├── SamplingAnimation36.pdf │ │ ├── SamplingAnimation37.pdf │ │ ├── SamplingAnimation38.pdf │ │ ├── SamplingAnimation39.pdf │ │ ├── SamplingAnimation4.pdf │ │ ├── SamplingAnimation40.pdf │ │ ├── SamplingAnimation41.pdf │ │ ├── SamplingAnimation42.pdf │ │ ├── SamplingAnimation43.pdf │ │ ├── SamplingAnimation44.pdf │ │ ├── SamplingAnimation45.pdf │ │ ├── SamplingAnimation46.pdf │ │ ├── SamplingAnimation47.pdf │ │ ├── SamplingAnimation48.pdf │ │ ├── SamplingAnimation49.pdf │ │ ├── SamplingAnimation5.pdf │ │ ├── SamplingAnimation50.pdf │ │ ├── SamplingAnimation6.pdf │ │ ├── SamplingAnimation7.pdf │ │ ├── SamplingAnimation8.pdf │ │ └── SamplingAnimation9.pdf ├── Lecture9 │ ├── Lecture9.Rnw │ ├── Lecture9.pdf │ ├── Lecture9.tex │ ├── ames.RData │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── figure │ │ ├── AbstractP.png │ │ ├── CIRememberAnimation1.pdf │ │ ├── CIRememberAnimation10.pdf │ │ ├── CIRememberAnimation11.pdf │ │ ├── CIRememberAnimation12.pdf │ │ ├── CIRememberAnimation13.pdf │ │ ├── CIRememberAnimation14.pdf │ │ ├── CIRememberAnimation15.pdf │ │ ├── CIRememberAnimation16.pdf │ │ ├── CIRememberAnimation17.pdf │ │ ├── CIRememberAnimation18.pdf │ │ ├── CIRememberAnimation19.pdf │ │ ├── CIRememberAnimation2.pdf │ │ ├── CIRememberAnimation20.pdf │ │ ├── CIRememberAnimation21.pdf │ │ ├── CIRememberAnimation22.pdf │ │ ├── CIRememberAnimation23.pdf │ │ ├── CIRememberAnimation24.pdf │ │ ├── CIRememberAnimation25.pdf │ │ ├── CIRememberAnimation26.pdf │ │ ├── CIRememberAnimation27.pdf │ │ ├── CIRememberAnimation28.pdf │ │ ├── CIRememberAnimation29.pdf │ │ ├── CIRememberAnimation3.pdf │ │ ├── CIRememberAnimation30.pdf │ │ ├── CIRememberAnimation31.pdf │ │ ├── CIRememberAnimation32.pdf │ │ ├── CIRememberAnimation33.pdf │ │ ├── CIRememberAnimation34.pdf │ │ ├── CIRememberAnimation35.pdf │ │ ├── CIRememberAnimation36.pdf │ │ ├── CIRememberAnimation37.pdf │ │ ├── CIRememberAnimation38.pdf │ │ ├── CIRememberAnimation39.pdf │ │ ├── CIRememberAnimation4.pdf │ │ ├── CIRememberAnimation40.pdf │ │ ├── CIRememberAnimation41.pdf │ │ ├── CIRememberAnimation42.pdf │ │ ├── CIRememberAnimation43.pdf │ │ ├── CIRememberAnimation44.pdf │ │ ├── CIRememberAnimation45.pdf │ │ ├── CIRememberAnimation46.pdf │ │ ├── CIRememberAnimation47.pdf │ │ ├── CIRememberAnimation48.pdf │ │ ├── CIRememberAnimation49.pdf │ │ ├── CIRememberAnimation5.pdf │ │ ├── CIRememberAnimation50.pdf │ │ ├── CIRememberAnimation6.pdf │ │ ├── CIRememberAnimation7.pdf │ │ ├── CIRememberAnimation8.pdf │ │ ├── CIRememberAnimation9.pdf │ │ ├── GenderDist.pdf │ │ ├── PlotCICompare.pdf │ │ ├── PlotCIDiffMeans.pdf │ │ ├── TimeCI.pdf │ │ ├── TimeCINull.pdf │ │ ├── ZScore.png │ │ └── tDist.png ├── LectureCreator.sh ├── Seminar1 │ ├── Seminar1.Rnw │ ├── Seminar1.pdf │ ├── Seminar1.tex │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── images │ │ └── RStudioIcon.png ├── Seminar10 │ ├── Seminar10.Rnw │ ├── Seminar10.pdf │ ├── Seminar10.tex │ ├── beamerouterthemeStats.sty │ ├── beamerthemeStats.sty │ └── math.png ├── Seminar11 │ ├── CalCarb.png │ ├── Outlier.png │ ├── Seminar11.Rnw │ ├── Seminar11.pdf │ ├── Seminar11.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar12 │ ├── ClassExamples.R │ ├── Seminar12.Rnw │ ├── Seminar12.pdf │ ├── Seminar12.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar2 │ ├── Seminar2.Rnw │ ├── Seminar2.pdf │ ├── Seminar2.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar3 │ ├── Seminar2Example.R │ ├── Seminar3.Rnw │ ├── Seminar3.pdf │ ├── Seminar3.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar4 │ ├── Seminar4.Rnw │ ├── Seminar4.pdf │ ├── Seminar4.tex │ ├── TablesInMarkdownExample │ │ ├── TablesInMarkdownExample.Rmd │ │ ├── TablesInMarkdownExample.html │ │ └── TablesInMarkdownExample.md │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar6 │ ├── CircleTerror.png │ ├── NoMoreCircleTerror.png │ ├── Seminar6.Rnw │ ├── Seminar6.pdf │ ├── Seminar6.tex │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar7 │ ├── Assignment2Example │ │ ├── Assignment2Example.Rmd │ │ ├── Assignment2Example.html │ │ ├── Assignment2Example.md │ │ └── figure │ │ │ ├── unnamed-chunk-2.png │ │ │ ├── unnamed-chunk-3.png │ │ │ ├── unnamed-chunk-4.png │ │ │ └── unnamed-chunk-5.png │ ├── ConfInt.png │ ├── ConfidenceInervalsMeanPace.R │ ├── Seminar7.Rnw │ ├── Seminar7.pdf │ ├── Seminar7.tex │ ├── ames.RData │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty ├── Seminar9 │ ├── Seminar9.Rnw │ ├── Seminar9.pdf │ ├── Seminar9.tex │ ├── ames.RData │ ├── beamerouterthemeStats.sty │ └── beamerthemeStats.sty └── StatsCourseAd │ ├── assets │ ├── images │ │ ├── bloomberg_snap.png │ │ ├── courseSite.png │ │ ├── leg.violence.map.html │ │ ├── nytimes_snap.png │ │ ├── qplot-swiss-smooth.png │ │ ├── violence_snap.jpeg │ │ ├── wiki.png │ │ └── worldbank_snap.png │ └── templates │ │ ├── deck.tpl │ │ └── slide.tpl │ ├── index.Rmd │ ├── index.html │ └── index.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore the following files in Git Version Tracking # 2 | ###################################################### 3 | 4 | *concordance.tex 5 | *.log 6 | *.nav 7 | *.snm 8 | *.gz 9 | *.toc 10 | *.vrb 11 | *.Rhistory 12 | *.DS_Store 13 | cache/* 14 | -------------------------------------------------------------------------------- /Assignments/Assignment2.md: -------------------------------------------------------------------------------- 1 | # Assignment 2 2 | ### Intro to Social Science Data Analysis 3 | #### Yonsei University 4 | 5 | **Due:** Friday 19 October 6 | 7 | --- 8 | 9 | **Describe** at least **3** variables in a data set. 10 | 11 | You need to select a **range of descriptive statistical tools**. The tools should include both **numerical descriptive statistics** and **graphics**. 12 | 13 | These tools should describe the variables': 14 | 15 | - central tendency, 16 | 17 | - variation, 18 | 19 | - their relationships with the other variables. 20 | 21 | The descriptions need to be discussed **in paragraph form**. 22 | 23 | The description must be **reproducible**. So you should email me the link to a Dropbox folder with: 24 | 25 | - the `.csv` data set, 26 | 27 | - the `.Rmd` R markdown file, 28 | 29 | - the final `.html` file. -------------------------------------------------------------------------------- /Assignments/Assignment4.md: -------------------------------------------------------------------------------- 1 | # Assignment 4 2 | ### Intro to Social Science Data Analysis 3 | #### Yonsei University 4 | 5 | **Due:** Friday 30 November 6 | 7 | --- 8 | 9 | ### Create a research design 10 | 11 | With your partner plan your research by answering the following questions: 12 | 13 | 1. What **difference** do you want to explain? 14 | 15 | 2. What is your **best guess** explanation (i.e. thesis statement/hypothesis)? 16 | 17 | 3. Can you test your hypothesis using **data**? If so, what data do you need to collect and what **tests** could you use? 18 | 19 | 4. What **rival explanations** are their? 20 | 21 | 5. How could you use data to test whether your best guess or the rival explanations are better? Write this as an **equation**. 22 | 23 | 24 | > Questionnaire from: modified from Cheryl Schonhardt-Bailey -------------------------------------------------------------------------------- /Background/README.md: -------------------------------------------------------------------------------- 1 | # Background File ## 2 | 3 | The **Background** folder just stores images and other material that are part of the wiki and activities. 4 | 5 | **Note:** you do not need to open this folder for the course. -------------------------------------------------------------------------------- /Background/figure/qplot-swiss-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Background/figure/qplot-swiss-scatter.png -------------------------------------------------------------------------------- /Background/figure/qplot-swiss-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Background/figure/qplot-swiss-smooth.png -------------------------------------------------------------------------------- /Background/figure/subset-swiss-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Background/figure/subset-swiss-plot.png -------------------------------------------------------------------------------- /DataAnalysisSyllabus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/DataAnalysisSyllabus.pdf -------------------------------------------------------------------------------- /Lectures/CommonFiles/Header.txt: -------------------------------------------------------------------------------- 1 | \documentclass{beamer} 2 | \usetheme{Stats} 3 | \setbeamercovered{transparent} 4 | \usepackage{color} 5 | \usepackage{hyperref} 6 | \hypersetup{ 7 | colorlinks=true 8 | linkcolor=black 9 | } 10 | \usepackage{url} 11 | \usepackage{graphics} 12 | \usepackage{tikz} 13 | \usepackage{booktabs} 14 | 15 | <>= 16 | options(width=50) 17 | opts_chunk$set(fig.align='center') 18 | @ 19 | 20 | 21 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Title Slide %%%%%%%%%%%%%%%%%%%%%%%%%% 22 | \title[]{Intro to Social Science Data Analysis \\[1cm] } 23 | \author[]{ 24 | \href{mailto:gandrud@yonsei.ac.kr}{Christopher Gandrud} 25 | } 26 | \date{\today} 27 | 28 | 29 | \begin{document} 30 | 31 | \frame{\titlepage} 32 | 33 | \section[Outline]{} 34 | \frame{\tableofcontents} 35 | 36 | \section{} 37 | \frame{ 38 | \frametitle{} 39 | 40 | } 41 | 42 | 43 | 44 | \end{document} -------------------------------------------------------------------------------- /Lectures/Lecture1/Lecture1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture1/Lecture1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/Chi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/Chi2.png -------------------------------------------------------------------------------- /Lectures/Lecture10/Chi2Specific.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/Chi2Specific.png -------------------------------------------------------------------------------- /Lectures/Lecture10/ExampleSLR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/ExampleSLR.png -------------------------------------------------------------------------------- /Lectures/Lecture10/Lecture10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/Lecture10.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/NonLinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/NonLinear.png -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/GDP1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/GDP1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/GDP2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/GDP2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/PerfectLinear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/PerfectLinear.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/PerfectLinearExplain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/PerfectLinearExplain.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/PerfectLinearExplain2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/PerfectLinearExplain2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/PerfectLinearExplain4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/PerfectLinearExplain4.pdf -------------------------------------------------------------------------------- /Lectures/Lecture10/figure/PerfectLinearExplain5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture10/figure/PerfectLinearExplain5.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/AssumptionViolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/AssumptionViolation.png -------------------------------------------------------------------------------- /Lectures/Lecture11/Lecture11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/Lecture11.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/LinearCor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/LinearCor.png -------------------------------------------------------------------------------- /Lectures/Lecture11/NonLinearCor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/NonLinearCor.png -------------------------------------------------------------------------------- /Lectures/Lecture11/Outliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/Outliers.png -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/BestFit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/BestFit.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/DescribeGPA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/DescribeGPA.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/Extrap1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/Extrap1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/Extrap2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/Extrap2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/Extrap3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/Extrap3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/NormallyDistributed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/NormallyDistributed.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/Res1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/Res1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/Res2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/Res2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/SATFYGPA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/SATFYGPA.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/SexDichot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/SexDichot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/SexDichot1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/SexDichot1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture11/figure/SexDichot2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture11/figure/SexDichot2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture12/Lecture12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/Lecture12.pdf -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.RData -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdb -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/ConfIntGraph_39519dd4c665226c7f3cb7b903e4c824.rdx -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.RData -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdb -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Scatter_9c95d38cf41f0ede3f2d4dd0f443504a.rdx -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.RData -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.rdb -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/cache/Zelig3_6491220697e8bda3435abd884388f361.rdx -------------------------------------------------------------------------------- /Lectures/Lecture12/cache/__packages: -------------------------------------------------------------------------------- 1 | GGally 2 | reshape 3 | plyr 4 | ggplot2 5 | Zelig 6 | boot 7 | MASS 8 | apsrtable 9 | openintro 10 | knitr 11 | stats 12 | graphics 13 | grDevices 14 | utils 15 | datasets 16 | methods 17 | base 18 | -------------------------------------------------------------------------------- /Lectures/Lecture12/figure/ConfIntGraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/figure/ConfIntGraph.pdf -------------------------------------------------------------------------------- /Lectures/Lecture12/figure/Scatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/figure/Scatter.pdf -------------------------------------------------------------------------------- /Lectures/Lecture12/figure/Zelig3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture12/figure/Zelig3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture13/Lecture13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture13/Lecture13.pdf -------------------------------------------------------------------------------- /Lectures/Lecture13/figure/PlotExpected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture13/figure/PlotExpected.pdf -------------------------------------------------------------------------------- /Lectures/Lecture14/Lecture14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture14/Lecture14.pdf -------------------------------------------------------------------------------- /Lectures/Lecture15/MakeSlidify.R: -------------------------------------------------------------------------------- 1 | ############ 2 | # Set up Simple Slidify Slideshow 3 | # Christopher Gandrud 4 | # 10 December 2012 5 | ############ 6 | 7 | # Set working Directory 8 | setwd("/git_repositories/Introduction_to_Statistics_and_Data_Analysis_Yonsei/Lectures/Lecture15/") 9 | 10 | # Load Slidify 11 | library(slidify) 12 | 13 | # Initialize slide show 14 | author("SlidifyHowTo") 15 | 16 | # Set working Directory 17 | setwd("/git_repositories/Introduction_to_Statistics_and_Data_Analysis_Yonsei/Lectures/Lecture15/SlidifyHowTo/") 18 | 19 | # Compile Slideshow 20 | slidify("index.Rmd") 21 | 22 | # Publish to RPubs 23 | publish('SlidifyHowTo', host = 'dropbox') -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/SlideDelimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/SlideDelimit.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/SlidifyHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/SlidifyHead.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/assets/css/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/assets/css/.gitkeep -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/assets/img/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/assets/img/.gitkeep -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/assets/js/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/assets/js/.gitkeep -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/assets/layouts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/assets/layouts/.gitkeep -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/figure/unnamed-chunk-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/figure/unnamed-chunk-5.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/README.md: -------------------------------------------------------------------------------- 1 | ## Google IO 2012 HTML5 Slides 2 | 3 | Authors: 4 | Eric Bidelman 5 | Luke Mahé 6 | 7 | Modified By: 8 | Ramnath Vaidyanathan 9 | 10 | URL: https://code.google.com/p/io-2012-slides 11 | 12 | LICENSE: Apache 2.0 13 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/images/google_developers_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/images/google_developers_icon_128.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/images/io2012_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/images/io2012_logo.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/polyfills/dataset.min.js: -------------------------------------------------------------------------------- 1 | (function(){function c(){d=!0;this.removeEventListener("DOMAttrModified",c,!1)}function g(b){return b.replace(h,function(b,a){return a.toUpperCase()})}function e(){var b={};i.call(this.attributes,function(a){if(f=a.name.match(j))b[g(f[1])]=a.value});return b}var i=[].forEach,j=/^data-(.+)/,h=/\-([a-z])/ig,a=document.createElement("div"),d=!1,f;a.dataset==void 0&&(a.addEventListener("DOMAttrModified",c,!1),a.setAttribute("foo","bar"),Element.prototype.__defineGetter__("dataset",d?function(){if(!this._datasetCache)this._datasetCache= 2 | e.call(this);return this._datasetCache}:e),document.addEventListener("DOMAttrModified",function(a){delete a.target._datasetCache},!1))})(); -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-go.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/js/slides.js: -------------------------------------------------------------------------------- 1 | require(['order!slide_config','order!modernizr.custom.45394', 2 | 'order!prettify/prettify', 'order!hammer', 'order!slide-controller', 3 | 'order!slide-deck'], function(someModule) { 4 | 5 | }); 6 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/layouts/head.html: -------------------------------------------------------------------------------- 1 | {{ title }} 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/layouts/slide.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{{ header}}} 4 |
5 |
6 | {{{ content }}} 7 |
8 | 9 | {{# pnotes }} 10 | 15 | {{/ pnotes }} 16 |
17 | 18 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/layouts/twocol.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: slide 3 | --- 4 | {{{ content }}} 5 |
6 | {{{ left }}} 7 |
8 |
9 | {{{ right }}} 10 |
11 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/default/layouts/vcenter.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{{ header}}} 4 |
5 |
6 | {{{ content }}} 7 |
8 | 9 | {{# pnotes}} 10 | 15 | {{/ pnotes}} 16 |
17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/images/google_developers_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/images/google_developers_icon_128.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/images/io2012_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/images/io2012_logo.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/polyfills/dataset.min.js: -------------------------------------------------------------------------------- 1 | (function(){function c(){d=!0;this.removeEventListener("DOMAttrModified",c,!1)}function g(b){return b.replace(h,function(b,a){return a.toUpperCase()})}function e(){var b={};i.call(this.attributes,function(a){if(f=a.name.match(j))b[g(f[1])]=a.value});return b}var i=[].forEach,j=/^data-(.+)/,h=/\-([a-z])/ig,a=document.createElement("div"),d=!1,f;a.dataset==void 0&&(a.addEventListener("DOMAttrModified",c,!1),a.setAttribute("foo","bar"),Element.prototype.__defineGetter__("dataset",d?function(){if(!this._datasetCache)this._datasetCache= 2 | e.call(this);return this._datasetCache}:e),document.addEventListener("DOMAttrModified",function(a){delete a.target._datasetCache},!1))})(); -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-go.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/js/slides.js: -------------------------------------------------------------------------------- 1 | require(['order!slide_config','order!modernizr.custom.45394', 2 | 'order!prettify/prettify', 'order!hammer', 'order!slide-controller', 3 | 'order!slide-deck'], function(someModule) { 4 | 5 | }); 6 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/layouts/slide.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{{ header}}} 4 |
5 |
6 | {{{ content }}} 7 |
8 | 9 | {{# pnotes }} 10 | 15 | {{/ pnotes }} 16 |
17 | 18 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/layouts/twocol.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: slide 3 | --- 4 | {{{ content }}} 5 |
6 | {{{ left }}} 7 |
8 |
9 | {{{ right }}} 10 |
11 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/frameworks/io2012/layouts/vcenter.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{{ header}}} 4 |
5 |
6 | {{{ content }}} 7 |
8 | 9 | {{# pnotes}} 10 | 15 | {{/ pnotes}} 16 |
17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/brown_papersq.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/pojoaque.jpg -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/css/school_book.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/highlighters/highlight.js/highlight.js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/images/CloseX-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/images/CloseX-31.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/images/MenuArrow-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/images/MenuArrow-15.png -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u0311":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiacritMarks.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u20DB":c.ACCENT,"\u20DC":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiactForSymbols.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Dingbats.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2772":c.OPEN},postfix:{"\u2773":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/Dingbats.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u03F6":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/GreekAndCoptic.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u00B0":c.ORD,"\u00B4":c.ACCENT,"\u00B8":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Latin1Supplement.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2145":c.ORD21,"\u2146":[2,0,b.ORD]}}});MathJax.Ajax.loadComplete(a.optableDir+"/LetterlikeSymbols.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u27E6":c.OPEN,"\u27EA":c.OPEN,"\u27EC":c.OPEN},postfix:{"\u27E7":c.CLOSE,"\u27EB":c.CLOSE,"\u27ED":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsA.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u2B45":c.RELSTRETCH,"\u2B46":c.RELSTRETCH}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscSymbolsAndArrows.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscTechnical.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u23B4":c.WIDEACCENT,"\u23B5":c.WIDEACCENT,"\u23DC":c.WIDEACCENT,"\u23DD":c.WIDEACCENT,"\u23E0":c.WIDEACCENT,"\u23E1":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscTechnical.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u02CD":c.WIDEACCENT,"\u02DA":c.ACCENT,"\u02DD":c.ACCENT,"\u02F7":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/SpacingModLetters.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/element/mml/optable/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u27F0":c.RELSTRETCH,"\u27F1":c.RELSTRETCH,"\u27FB":c.WIDEREL,"\u27FD":c.WIDEREL,"\u27FE":c.WIDEREL,"\u27FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsA.js")})(MathJax.ElementJax.mml); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/AsciiMath/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/AsciiMath/config.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.0",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimal:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/config.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.0",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/j.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Jcirc:"\u0134",Jcy:"\u0419",Jsercy:"\u0408",Jukcy:"\u0404",jcirc:"\u0135",jcy:"\u0439",jsercy:"\u0458",jukcy:"\u0454"});MathJax.Ajax.loadComplete(a.entityDir+"/j.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/k.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{KHcy:"\u0425",KJcy:"\u040C",Kappa:"\u039A",Kcedil:"\u0136",Kcy:"\u041A",kcedil:"\u0137",kcy:"\u043A",kgreen:"\u0138",khcy:"\u0445",kjcy:"\u045C"});MathJax.Ajax.loadComplete(a.entityDir+"/k.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/q.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{QUOT:"\u0022",qint:"\u2A0C",qprime:"\u2057",quaternions:"\u210D",quatint:"\u2A16",quest:"\u003F",questeq:"\u225F",quot:"\u0022"});MathJax.Ajax.loadComplete(a.entityDir+"/q.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/w.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",wedgeq:"\u2259",wp:"\u2118",wr:"\u2240",wreath:"\u2240"});MathJax.Ajax.loadComplete(a.entityDir+"/w.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/x.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",xhArr:"\u27FA",xharr:"\u27F7",xlArr:"\u27F8",xlarr:"\u27F5",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",xoplus:"\u2A01",xotime:"\u2A02",xrArr:"\u27F9",xrarr:"\u27F6",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0"});MathJax.Ajax.loadComplete(a.entityDir+"/x.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/y.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{YAcy:"\u042F",YIcy:"\u0407",YUcy:"\u042E",Yacute:"\u00DD",Ycirc:"\u0176",Ycy:"\u042B",Yuml:"\u0178",yacute:"\u00FD",yacy:"\u044F",ycirc:"\u0177",ycy:"\u044B",yicy:"\u0457",yucy:"\u044E",yuml:"\u00FF"});MathJax.Ajax.loadComplete(a.entityDir+"/y.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/z.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{ZHcy:"\u0416",Zacute:"\u0179",Zcaron:"\u017D",Zcy:"\u0417",Zdot:"\u017B",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zacute:"\u017A",zcaron:"\u017E",zcy:"\u0437",zdot:"\u017C",zeetrf:"\u2128",zhcy:"\u0436",zwj:"\u200D",zwnj:"\u200C"});MathJax.Ajax.loadComplete(a.entityDir+"/z.js")})(MathJax.InputJax.MathML); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{64256:[698,205,613,-169,726],64257:[703,205,556,-188,514],64258:[704,205,556,-186,553],64259:[703,205,856,-169,814],64260:[704,205,854,-169,851]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/AlphaPresentForms.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8413:[760,254,0,-753,256]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CombDiactForSymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/ControlPictures.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8355:[669,0,668,-13,661],8356:[683,12,500,-32,510],8359:[669,13,1229,-28,1173],8364:[681,17,562,34,546]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CurrencySymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8706:[686,10,559,44,559],8722:[297,-209,606,51,555]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/MathOperators.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{64256:[678,207,527,-147,673],64257:[681,207,500,-141,481],64258:[682,204,500,-141,518],64259:[681,207,744,-147,725],64260:[682,207,745,-147,763]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/AlphaPresentForms.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ControlPictures.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8355:[653,0,611,8,645],8356:[670,8,500,10,517],8359:[653,13,1149,0,1126],8364:[664,12,500,16,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/CurrencySymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8706:[668,11,471,40,471],8722:[286,-220,675,86,590]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/MathOperators.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ij.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{64256:[683,0,605,20,655],64257:[683,0,558,32,523],64258:[683,0,556,31,522],64259:[683,0,832,20,797],64260:[683,0,830,20,796]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/AlphaPresentForms.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12306:[662,0,685,10,672],12336:[417,-93,1412,45,1367]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CJK.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ControlPictures.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8355:[662,0,556,11,546],8356:[676,8,500,12,490],8359:[662,10,1182,16,1141],8364:[664,12,500,38,462]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CurrencySymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12398:[661,41,901,37,840]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Hiragana.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{42791:[683,233,481,9,427],42898:[676,14,734,18,700]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/LatinExtendedD.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{65533:[662,217,872,55,817]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Specials.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8319:[676,-270,541,57,484]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/SuperAndSubscripts.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ij.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/BoldItalic/All.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Italic/All.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXNonUnicode,{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/All.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9484:[694,-306,500,55,444],9488:[694,-306,500,55,444],9492:[366,22,500,55,444],9496:[366,22,500,55,444],9585:[694,195,889,0,860],9586:[694,195,889,0,860]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/BoxDrawing.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{770:[845,-561,0,-2347,13],771:[899,-628,0,-2332,-3]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/CombDiacritMarks.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10003:[706,34,833,84,749],10016:[716,22,833,48,786]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Dingbats.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9416:[709,175,902,8,894]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/EnclosedAlphanum.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GeneralPunctuation.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{989:[605,85,778,55,719],1008:[434,6,667,37,734]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GreekAndCoptic.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{160:[0,0,250,0,0],165:[683,0,750,11,738],174:[709,175,947,32,915],240:[749,21,556,42,509]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Latin1Supplement.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{295:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LatinExtendedA.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8463:[695,13,540,42,562],8487:[684,22,722,44,675],8498:[695,1,556,55,497],8502:[763,21,667,-22,687],8503:[764,43,444,-22,421],8504:[764,43,667,54,640],8513:[705,23,639,37,577]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LetterlikeSymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10731:[716,132,667,56,611]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscMathSymbolsB.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9733:[694,111,944,49,895]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscSymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8994:[378,-122,778,55,722],8995:[378,-143,778,55,722]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscTechnical.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{710:[845,-561,2333,-14,2346],732:[899,-628,2333,1,2330]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/SpacingModLetters.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur,{160:[0,0,250,0,0],8216:[708,-410,215,45,158],8217:[692,-395,215,49,163]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Other.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8211:[285,-248,511,91,554],8212:[285,-248,1022,117,1038],8216:[694,-379,307,197,362],8217:[694,-379,307,213,377],8220:[694,-379,514,243,606],8221:[694,-379,514,176,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/GeneralPunctuation.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/Latin1Supplement.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8463:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/LetterlikeSymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9651:[716,0,889,59,828],9657:[505,5,500,26,474],9661:[500,215,889,59,828],9667:[505,5,500,26,473],9711:[715,215,1000,56,944]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/GeometricShapes.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9824:[727,130,778,55,723],9825:[716,33,778,55,723],9826:[727,162,778,55,723],9827:[726,130,778,28,750],9837:[750,22,389,55,332],9838:[734,223,389,65,324],9839:[723,223,389,55,333]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/MiscSymbols.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{730:[715,-542,500,147,352]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/SpacingModLetters.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Script,{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Other.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244,"12 501Q12 527 31 542T63 558Q73 560 77 560Q114 560 128 528Q133 518 188 293T244 61Q244 56 223 50T195 43Q192 43 190 45T102 263T14 486Q12 496 12 501"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeneralPunctuation.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur={directory:"Fraktur/Regular",family:"MathJax_Fraktur",id:"MJFRAK",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{8710:[716,0,818,70,751,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/MathOperators.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{8710:[716,0,833,46,786,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MathOperators.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"]={directory:"SansSerif/Italic",family:"MathJax_SansSerif",id:"MJSSI",style:"italic",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif={directory:"SansSerif/Regular",family:"MathJax_SansSerif",id:"MJSS",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture15/SlidifyHowTo/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js 3 | * 4 | * Copyright (c) 2012 Design Science, Inc. 5 | * 6 | * Part of the MathJax library. 7 | * See http://www.mathjax.org for details. 8 | * 9 | * Licensed under the Apache License, Version 2.0; 10 | * you may not use this file except in compliance with the License. 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | */ 14 | 15 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter={directory:"Typewriter/Regular",family:"MathJax_Typewriter",id:"MJTT",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Main.js"); 16 | 17 | -------------------------------------------------------------------------------- /Lectures/Lecture2/ExampleDataFrameFin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture2/ExampleDataFrameFin.png -------------------------------------------------------------------------------- /Lectures/Lecture2/Lecture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture2/Lecture2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture2/LevelsOfMeasurement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture2/LevelsOfMeasurement.png -------------------------------------------------------------------------------- /Lectures/Lecture3/BadData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/BadData.png -------------------------------------------------------------------------------- /Lectures/Lecture3/Confounder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/Confounder.png -------------------------------------------------------------------------------- /Lectures/Lecture3/ExplainResponse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/ExplainResponse.png -------------------------------------------------------------------------------- /Lectures/Lecture3/IdealData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/IdealData.png -------------------------------------------------------------------------------- /Lectures/Lecture3/Lecture3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/Lecture3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture3/TextComma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture3/TextComma.png -------------------------------------------------------------------------------- /Lectures/Lecture4/CarsMarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/CarsMarkdown.png -------------------------------------------------------------------------------- /Lectures/Lecture4/ChunkRStudioExamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/ChunkRStudioExamples.png -------------------------------------------------------------------------------- /Lectures/Lecture4/KnitHTMLButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/KnitHTMLButton.png -------------------------------------------------------------------------------- /Lectures/Lecture4/Lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/Lecture4.pdf -------------------------------------------------------------------------------- /Lectures/Lecture4/MarkdownTopBarLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/MarkdownTopBarLeft.png -------------------------------------------------------------------------------- /Lectures/Lecture4/RepSpectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/RepSpectrum.png -------------------------------------------------------------------------------- /Lectures/Lecture4/SyllabusSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/SyllabusSnap.png -------------------------------------------------------------------------------- /Lectures/Lecture4/htmlExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/htmlExample.png -------------------------------------------------------------------------------- /Lectures/Lecture4/markdownTohtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture4/markdownTohtml.png -------------------------------------------------------------------------------- /Lectures/Lecture5/BarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/BarChart.png -------------------------------------------------------------------------------- /Lectures/Lecture5/Lecture5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/Lecture5.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/MultiModal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/MultiModal.png -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/BoxPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/BoxPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/CarsBarPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/CarsBarPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/HistoAgain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/HistoAgain.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/InfantHist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/InfantHist.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/LogTransformScatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/LogTransformScatter.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/MoasicPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/MoasicPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/NormallyDistGraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/NormallyDistGraph.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/SDMort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/SDMort.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/SDNormal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/SDNormal.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/SDNormal10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/SDNormal10.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/SDNormal30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/SDNormal30.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/Scatter1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/Scatter1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture5/figure/ScatterTransformed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture5/figure/ScatterTransformed.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/Lecture6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/Lecture6.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/BadColourBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/BadColourBar.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/BasicPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/BasicPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/BasicPlotLabel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/BasicPlotLabel.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/CirclesCompare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/CirclesCompare.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/CirclesCompareNumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/CirclesCompareNumbers.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/ColourContext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/ColourContext.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/Ebbinghause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/Ebbinghause.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/GoodColourBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/GoodColourBar.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/GraphCirclesComp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/GraphCirclesComp.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/HexColorScatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/HexColorScatter.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/HexColoursScatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/HexColoursScatter.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/RStudioUse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/RStudioUse.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/ScatterColour1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/ScatterColour1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/SimpleScatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/SimpleScatter.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/SpendPerChange.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/SpendPerChange.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/SpendingChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/SpendingChange.png -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/SpendingGraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/SpendingGraph.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/ViolinPlotShow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/ViolinPlotShow.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/ggScatterSimple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/ggScatterSimple.pdf -------------------------------------------------------------------------------- /Lectures/Lecture6/figure/ggScatterSimpleBlank.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture6/figure/ggScatterSimpleBlank.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/Lecture7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/Lecture7.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation10.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation11.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation12.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation13.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation14.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation15.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation16.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation17.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation18.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation19.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation20.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation21.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation22.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation23.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation24.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation25.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation26.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation27.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation28.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation29.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation30.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation31.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation32.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation33.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation34.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation35.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation36.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation36.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation37.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation37.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation38.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation39.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation4.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation40.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation41.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation42.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation43.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation44.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation44.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation45.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation46.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation46.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation47.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation47.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation48.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation48.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation49.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation49.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation5.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation50.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation50.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation6.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation7.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation8.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/CIAnimation9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/CIAnimation9.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/ConfIntPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/ConfIntPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/DistPopSampMean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/DistPopSampMean.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/DistTimeSampleMean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/DistTimeSampleMean.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/DistTimeSampleMean5000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/DistTimeSampleMean5000.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/Employees3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/Employees3D.png -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/EmployeesFlat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/EmployeesFlat.png -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/HistSampAge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/HistSampAge.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/HistSampTime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/HistSampTime.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/QQPlot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/QQPlot.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/QQPlotAge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/QQPlotAge.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/QQPlotTime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/QQPlotTime.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation10.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation11.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation12.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation13.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation14.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation15.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation16.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation17.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation18.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation19.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation20.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation21.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation22.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation23.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation24.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation25.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation26.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation27.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation28.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation29.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation30.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation31.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation32.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation33.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation34.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation35.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation36.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation36.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation37.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation37.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation38.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation39.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation4.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation40.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation41.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation42.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation43.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation44.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation44.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation45.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation46.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation46.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation47.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation47.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation48.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation48.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation49.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation49.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation5.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation50.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation50.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation6.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation7.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation8.pdf -------------------------------------------------------------------------------- /Lectures/Lecture7/figure/SamplingAnimation9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture7/figure/SamplingAnimation9.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/Lecture9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/Lecture9.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/ames.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/ames.RData -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/AbstractP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/AbstractP.png -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation1.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation10.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation11.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation12.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation13.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation14.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation15.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation16.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation17.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation18.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation19.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation2.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation20.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation21.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation22.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation23.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation24.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation25.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation26.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation27.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation28.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation29.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation3.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation30.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation31.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation32.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation33.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation34.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation35.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation36.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation36.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation37.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation37.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation38.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation39.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation4.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation40.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation41.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation42.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation43.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation44.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation44.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation45.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation46.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation46.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation47.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation47.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation48.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation48.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation49.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation49.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation5.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation50.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation50.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation6.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation7.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation8.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/CIRememberAnimation9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/CIRememberAnimation9.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/GenderDist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/GenderDist.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/PlotCICompare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/PlotCICompare.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/PlotCIDiffMeans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/PlotCIDiffMeans.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/TimeCI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/TimeCI.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/TimeCINull.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/TimeCINull.pdf -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/ZScore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/ZScore.png -------------------------------------------------------------------------------- /Lectures/Lecture9/figure/tDist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Lecture9/figure/tDist.png -------------------------------------------------------------------------------- /Lectures/Seminar1/Seminar1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar1/Seminar1.pdf -------------------------------------------------------------------------------- /Lectures/Seminar1/images/RStudioIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar1/images/RStudioIcon.png -------------------------------------------------------------------------------- /Lectures/Seminar10/Seminar10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar10/Seminar10.pdf -------------------------------------------------------------------------------- /Lectures/Seminar10/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar10/math.png -------------------------------------------------------------------------------- /Lectures/Seminar11/CalCarb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar11/CalCarb.png -------------------------------------------------------------------------------- /Lectures/Seminar11/Outlier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar11/Outlier.png -------------------------------------------------------------------------------- /Lectures/Seminar11/Seminar11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar11/Seminar11.pdf -------------------------------------------------------------------------------- /Lectures/Seminar12/Seminar12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar12/Seminar12.pdf -------------------------------------------------------------------------------- /Lectures/Seminar2/Seminar2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar2/Seminar2.pdf -------------------------------------------------------------------------------- /Lectures/Seminar3/Seminar2Example.R: -------------------------------------------------------------------------------- 1 | ########## 2 | # Seminar 3 3 | # Christopher Gandrud 4 | ########## 5 | 6 | # Numberic 7 | Numbers <- c(7, 12, 14) 8 | 9 | # Character 10 | Char <- c("House", "cat", "dog") 11 | 12 | # Factor 13 | Factor <- c(1, 0, 1) 14 | 15 | # Create data frame 16 | Data <- data.frame(Numbers, Char, Factor, options(stringsAsFactors = FALSE)) 17 | 18 | # Remove stringsAsFactors variable 19 | Data <- Data[, 1:3] 20 | 21 | # Set factor levels 22 | # 0 = Happy 23 | # 1 = Sad 24 | Data$Factor <- factor(Data$Factor, labels = c("Happy", "Sad")) 25 | -------------------------------------------------------------------------------- /Lectures/Seminar3/Seminar3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar3/Seminar3.pdf -------------------------------------------------------------------------------- /Lectures/Seminar4/Seminar4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar4/Seminar4.pdf -------------------------------------------------------------------------------- /Lectures/Seminar6/CircleTerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar6/CircleTerror.png -------------------------------------------------------------------------------- /Lectures/Seminar6/NoMoreCircleTerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar6/NoMoreCircleTerror.png -------------------------------------------------------------------------------- /Lectures/Seminar6/Seminar6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar6/Seminar6.pdf -------------------------------------------------------------------------------- /Lectures/Seminar7/Assignment2Example/Assignment2Example.md: -------------------------------------------------------------------------------- 1 | # Assignment 2 2 | ## Christopher Gandrud 3 | ### 19 October 2012 4 | 5 | --- 6 | 7 | 8 | 9 | 10 | ## Figure 1: Scatterplot of Tech Exports to GDP 11 | ![plot of chunk unnamed-chunk-2](figure/unnamed-chunk-2.png) 12 | 13 | 14 | ## Figure 2: Scatterplot of Tech Exports to GDP (labeled) 15 | ![plot of chunk unnamed-chunk-3](figure/unnamed-chunk-3.png) 16 | 17 | 18 | ## Figure 3: Scatterplot of Tech Exports to GDP (Only countries) 19 | ![plot of chunk unnamed-chunk-4](figure/unnamed-chunk-4.png) 20 | 21 | 22 | ## Figure 4: Scatterplot of Tech Exports (log) to GDP (log) (Only countries) 23 | ![plot of chunk unnamed-chunk-5](figure/unnamed-chunk-5.png) 24 | 25 | -------------------------------------------------------------------------------- /Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-2.png -------------------------------------------------------------------------------- /Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-3.png -------------------------------------------------------------------------------- /Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-4.png -------------------------------------------------------------------------------- /Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/Assignment2Example/figure/unnamed-chunk-5.png -------------------------------------------------------------------------------- /Lectures/Seminar7/ConfInt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/ConfInt.png -------------------------------------------------------------------------------- /Lectures/Seminar7/Seminar7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/Seminar7.pdf -------------------------------------------------------------------------------- /Lectures/Seminar7/ames.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar7/ames.RData -------------------------------------------------------------------------------- /Lectures/Seminar9/Seminar9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar9/Seminar9.pdf -------------------------------------------------------------------------------- /Lectures/Seminar9/ames.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/Seminar9/ames.RData -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/bloomberg_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/bloomberg_snap.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/courseSite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/courseSite.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/nytimes_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/nytimes_snap.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/qplot-swiss-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/qplot-swiss-smooth.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/violence_snap.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/violence_snap.jpeg -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/wiki.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/images/worldbank_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophergandrud/Introduction_to_Statistics_and_Data_Analysis_Yonsei/b83ff7b9842e22a7797d7f78c722e0801ee2ea64/Lectures/StatsCourseAd/assets/images/worldbank_snap.png -------------------------------------------------------------------------------- /Lectures/StatsCourseAd/assets/templates/slide.tpl: -------------------------------------------------------------------------------- 1 | {{{ header }}} 2 | {{{ content }}} 3 | --------------------------------------------------------------------------------