├── .nojekyll ├── libraries ├── frameworks │ └── bootstrap │ │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor │ │ │ ├── modernizr-2.6.1-respond-1.1.0.min.js │ │ │ └── bootstrap.min.js │ │ ├── robots.txt │ │ ├── layouts │ │ ├── slide.html │ │ ├── hero.html │ │ ├── special.html │ │ ├── hero2.html │ │ ├── div.html │ │ ├── scripts.html │ │ └── deck.html │ │ ├── ico │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ └── apple-touch-icon-144x144-precomposed.png │ │ ├── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ │ ├── humans.txt │ │ ├── css │ │ ├── main.css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap-responsive.css │ │ ├── partials │ │ ├── footer.html │ │ ├── navbar.html │ │ └── head.html │ │ ├── 404.html │ │ └── index.html └── highlighters │ └── prettify │ ├── prettify.html │ ├── css │ ├── twitter-bootstrap.css │ ├── desert.css │ ├── default.css │ ├── sons-of-obsidian.css │ ├── sunburst.css │ ├── hemisu-light.css │ └── tomorrow-night-bright.css │ └── js │ └── lang-r.js ├── screenshot.png ├── screenshot cumul.png ├── smallmultiples_iris.R ├── .gitattributes ├── signal_analysis.Rmd ├── experiments.Rmd ├── .gitignore ├── signal_analysis.Rhtml ├── css └── dc.css ├── signal_slidify.Rmd ├── smallmultiples_iris.html ├── iris.json └── js └── crossfilter.js /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/layouts/slide.html: -------------------------------------------------------------------------------- 1 | {{{ slide.header }}} 2 | {{{ slide.content }}} 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/rCharts_crossfilter_dcjs/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot cumul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/rCharts_crossfilter_dcjs/HEAD/screenshot cumul.png -------------------------------------------------------------------------------- /smallmultiples_iris.R: -------------------------------------------------------------------------------- 1 | #Various R code to play with dc.js small multiples 2 | 3 | #write the iris data as a JSON Array 4 | writeLines(rCharts::toJSONArray(iris),"iris.json") 5 | 6 | -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/ico/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/rCharts_crossfilter_dcjs/HEAD/libraries/frameworks/bootstrap/ico/apple-touch-icon.png -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/rCharts_crossfilter_dcjs/HEAD/libraries/frameworks/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/rCharts_crossfilter_dcjs/HEAD/libraries/frameworks/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/layouts/hero.html: -------------------------------------------------------------------------------- 1 |
Styled using Bootstrap. Hosted on GitHub. Icons from Font-Awesome. Web fonts from Google. Generated by Slidify
2 | -------------------------------------------------------------------------------- /libraries/frameworks/bootstrap/layouts/div.html: -------------------------------------------------------------------------------- 1 |code24 | * 25 | * Language definition from 26 | * http://cran.r-project.org/doc/manuals/R-lang.html. 27 | * Many of the regexes are shared with the pygments SLexer, 28 | * http://pygments.org/. 29 | * 30 | * @author jeffrey.arnold@gmail.com 31 | */ 32 | PR['registerLangHandler']( 33 | PR['createSimpleLexer']( 34 | [ 35 | [PR['PR_PLAIN'], /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'], 36 | [PR['PR_STRING'], /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"'], 37 | [PR['PR_STRING'], /^\'(?:[^\'\\]|\\[\s\S])*(?:\'|$)/, null, "'"] 38 | ], 39 | [ 40 | [PR['PR_COMMENT'], /^#.*/], 41 | [PR['PR_KEYWORD'], /^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![A-Za-z0-9_.])/], 42 | // hex numbes 43 | [PR['PR_LITERAL'], /^0[xX][a-fA-F0-9]+([pP][0-9]+)?[Li]?/], 44 | // Decimal numbers 45 | [PR['PR_LITERAL'], /^[+-]?([0-9]+(\.[0-9]+)?|\.[0-9]+)([eE][+-]?[0-9]+)?[Li]?/], 46 | // builtin symbols 47 | [PR['PR_LITERAL'], /^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|[0-9]+))(?![A-Za-z0-9_.])/], 48 | // assignment, operators, and parens, etc. 49 | [PR['PR_PUNCTUATION'], /^(?:<-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|\*|\+|\^|\/|!|%.*?%|=|~|\$|@|:{1,3}|[\[\](){};,?])/], 50 | // valid variable names 51 | [PR['PR_PLAIN'], /^(?:[A-Za-z]+[A-Za-z0-9_.]*|\.[a-zA-Z_][0-9a-zA-Z\._]*)(?![A-Za-z0-9_.])/], 52 | // string backtick 53 | [PR['PR_STRING'], /^`.+`/] 54 | ]), 55 | ['r', 's', 'R', 'S', 'Splus']); 56 | -------------------------------------------------------------------------------- /libraries/highlighters/prettify/css/hemisu-light.css: -------------------------------------------------------------------------------- 1 | /* Hemisu Light */ 2 | /* Original theme - http://noahfrederick.com/vim-color-scheme-hemisu/ */ 3 | /* Pretty printing styles. Used with prettify.js. */ 4 | /* SPAN elements with the classes below are added by prettyprint. */ 5 | /* plain text */ 6 | .pln { 7 | color: #111111; } 8 | 9 | @media screen { 10 | /* string content */ 11 | .str { 12 | color: #739200; } 13 | 14 | /* a keyword */ 15 | .kwd { 16 | color: #739200; } 17 | 18 | /* a comment */ 19 | .com { 20 | color: #999999; } 21 | 22 | /* a type name */ 23 | .typ { 24 | color: #ff0055; } 25 | 26 | /* a literal value */ 27 | .lit { 28 | color: #538192; } 29 | 30 | /* punctuation */ 31 | .pun { 32 | color: #111111; } 33 | 34 | /* lisp open bracket */ 35 | .opn { 36 | color: #111111; } 37 | 38 | /* lisp close bracket */ 39 | .clo { 40 | color: #111111; } 41 | 42 | /* a markup tag name */ 43 | .tag { 44 | color: #111111; } 45 | 46 | /* a markup attribute name */ 47 | .atn { 48 | color: #739200; } 49 | 50 | /* a markup attribute value */ 51 | .atv { 52 | color: #ff0055; } 53 | 54 | /* a declaration */ 55 | .dec { 56 | color: #111111; } 57 | 58 | /* a variable name */ 59 | .var { 60 | color: #111111; } 61 | 62 | /* a function name */ 63 | .fun { 64 | color: #538192; } } 65 | /* Use higher contrast and text-weight for printable form. */ 66 | @media print, projection { 67 | .str { 68 | color: #060; } 69 | 70 | .kwd { 71 | color: #006; 72 | font-weight: bold; } 73 | 74 | .com { 75 | color: #600; 76 | font-style: italic; } 77 | 78 | .typ { 79 | color: #404; 80 | font-weight: bold; } 81 | 82 | .lit { 83 | color: #044; } 84 | 85 | .pun, .opn, .clo { 86 | color: #440; } 87 | 88 | .tag { 89 | color: #006; 90 | font-weight: bold; } 91 | 92 | .atn { 93 | color: #404; } 94 | 95 | .atv { 96 | color: #060; } } 97 | /* Style */ 98 | pre.prettyprint { 99 | background: white; 100 | font-family: Menlo, Monaco, Consolas, monospace; 101 | /* font-size: 12px;*/ 102 | line-height: 1.5; 103 | border: 1px solid #ccc; 104 | padding: 10px; 105 | } 106 | 107 | /* Specify class=linenums on a pre to get line numbering */ 108 | ol.linenums { 109 | margin-top: 0; 110 | margin-bottom: 0; } 111 | 112 | /* IE indents via margin-left */ 113 | li.L0, 114 | li.L1, 115 | li.L2, 116 | li.L3, 117 | li.L4, 118 | li.L5, 119 | li.L6, 120 | li.L7, 121 | li.L8, 122 | li.L9 { 123 | /* */ } 124 | 125 | /* Alternate shading for lines */ 126 | li.L1, 127 | li.L3, 128 | li.L5, 129 | li.L7, 130 | li.L9 { 131 | /* */ } -------------------------------------------------------------------------------- /libraries/highlighters/prettify/css/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* Pretty printing styles. Used with prettify.js. */ 4 | /* SPAN elements with the classes below are added by prettyprint. */ 5 | /* plain text */ 6 | .pln { 7 | color: #eaeaea; } 8 | 9 | @media screen { 10 | /* string content */ 11 | .str { 12 | color: #b9ca4a; } 13 | 14 | /* a keyword */ 15 | .kwd { 16 | color: #c397d8; } 17 | 18 | /* a comment */ 19 | .com { 20 | color: #969896; } 21 | 22 | /* a type name */ 23 | .typ { 24 | color: #7aa6da; } 25 | 26 | /* a literal value */ 27 | .lit { 28 | color: #e78c45; } 29 | 30 | /* punctuation */ 31 | .pun { 32 | color: #eaeaea; } 33 | 34 | /* lisp open bracket */ 35 | .opn { 36 | color: #eaeaea; } 37 | 38 | /* lisp close bracket */ 39 | .clo { 40 | color: #eaeaea; } 41 | 42 | /* a markup tag name */ 43 | .tag { 44 | color: #d54e53; } 45 | 46 | /* a markup attribute name */ 47 | .atn { 48 | color: #e78c45; } 49 | 50 | /* a markup attribute value */ 51 | .atv { 52 | color: #70c0b1; } 53 | 54 | /* a declaration */ 55 | .dec { 56 | color: #e78c45; } 57 | 58 | /* a variable name */ 59 | .var { 60 | color: #d54e53; } 61 | 62 | /* a function name */ 63 | .fun { 64 | color: #7aa6da; } } 65 | /* Use higher contrast and text-weight for printable form. */ 66 | @media print, projection { 67 | .str { 68 | color: #060; } 69 | 70 | .kwd { 71 | color: #006; 72 | font-weight: bold; } 73 | 74 | .com { 75 | color: #600; 76 | font-style: italic; } 77 | 78 | .typ { 79 | color: #404; 80 | font-weight: bold; } 81 | 82 | .lit { 83 | color: #044; } 84 | 85 | .pun, .opn, .clo { 86 | color: #440; } 87 | 88 | .tag { 89 | color: #006; 90 | font-weight: bold; } 91 | 92 | .atn { 93 | color: #404; } 94 | 95 | .atv { 96 | color: #060; } } 97 | /* Style */ 98 | pre.prettyprint { 99 | background: black; 100 | font-family: Menlo, Monaco, Consolas, monospace; 101 | font-size: 12px; 102 | line-height: 1.5; 103 | border: 1px solid #ccc; 104 | padding: 10px; } 105 | 106 | /* Specify class=linenums on a pre to get line numbering */ 107 | ol.linenums { 108 | margin-top: 0; 109 | margin-bottom: 0; } 110 | 111 | /* IE indents via margin-left */ 112 | li.L0, 113 | li.L1, 114 | li.L2, 115 | li.L3, 116 | li.L4, 117 | li.L5, 118 | li.L6, 119 | li.L7, 120 | li.L8, 121 | li.L9 { 122 | /* */ } 123 | 124 | /* Alternate shading for lines */ 125 | li.L1, 126 | li.L3, 127 | li.L5, 128 | li.L7, 129 | li.L9 { 130 | /* */ } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /signal_analysis.Rhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
Signal Histogram
Average Return By Signal
Count By Year
Sorry, but the page you were trying to view does not exist.
146 |It looks like this was the result of either:
147 |
44 |
45 | # Signal Analysis on S&P 500 using [dc.js](http://nickqizhu.github.io/dc.js/) & [crossfilter](http://square.github.io/crossfilter/)
46 | ## With Help from [R](http://r-project.org) and [slidify](http://slidify.org)
47 |
48 | This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique.
75 | 76 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
83 | 84 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
88 | 89 |Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
93 | 94 |