Skip to content

Commit

Permalink
feat: update discord invite link
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Jun 30, 2023
1 parent e8b2bee commit 882b760
Show file tree
Hide file tree
Showing 113 changed files with 4,132 additions and 4,981 deletions.
1 change: 0 additions & 1 deletion .Rprofile

This file was deleted.

28 changes: 0 additions & 28 deletions R/omdb_download.R

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
414 changes: 300 additions & 114 deletions docs/data-wrangling.html

Large diffs are not rendered by default.

469 changes: 311 additions & 158 deletions docs/distributions-summaries-and-dimensionality-reduction.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
529 changes: 354 additions & 175 deletions docs/fallacies-correlation-and-regression.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Diff not rendered.
355 changes: 272 additions & 83 deletions docs/freestyle.html

Large diffs are not rendered by default.

Binary file modified docs/freestyle_files/figure-html/unnamed-chunk-10-1.png
Binary file modified docs/freestyle_files/figure-html/unnamed-chunk-11-1.png
Binary file modified docs/freestyle_files/figure-html/unnamed-chunk-12-1.png
Binary file modified docs/freestyle_files/figure-html/unnamed-chunk-13-1.png
Binary file modified docs/freestyle_files/figure-html/unnamed-chunk-3-1.png
374 changes: 281 additions & 93 deletions docs/functional-programming.html

Large diffs are not rendered by default.

Binary file added docs/images/survivorship-tweet.png
300 changes: 258 additions & 42 deletions docs/index.html

Large diffs are not rendered by default.

Binary file modified docs/index_files/figure-html/cover-plot-1.png
405 changes: 296 additions & 109 deletions docs/intro.html

Large diffs are not rendered by default.

Binary file modified docs/intro_files/figure-html/unnamed-chunk-39-1.png
Binary file modified docs/intro_files/figure-html/unnamed-chunk-40-1.png
Binary file modified docs/intro_files/figure-html/unnamed-chunk-42-1.png
Binary file modified docs/intro_files/figure-html/unnamed-chunk-43-1.png
401 changes: 300 additions & 101 deletions docs/probability-and-hypothesis-testing.html

Large diffs are not rendered by default.

356 changes: 288 additions & 68 deletions docs/references.html

Large diffs are not rendered by default.

326 changes: 273 additions & 53 deletions docs/resources.html

Large diffs are not rendered by default.

90 changes: 45 additions & 45 deletions docs/search.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/site_libs/bootstrap/bootstrap-dark.min.css

Large diffs are not rendered by default.

309 changes: 293 additions & 16 deletions docs/site_libs/bootstrap/bootstrap-icons.css

Large diffs are not rendered by default.

Binary file modified docs/site_libs/bootstrap/bootstrap-icons.woff
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/site_libs/bootstrap/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/site_libs/clipboard/clipboard.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -287,29 +287,27 @@
document.body.style.height = "100%";
document.documentElement.style.width = "100%";
document.documentElement.style.height = "100%";
if (cel) {
cel.style.position = "absolute";
var pad = unpackPadding(sizing.padding);
cel.style.top = pad.top + "px";
cel.style.right = pad.right + "px";
cel.style.bottom = pad.bottom + "px";
cel.style.left = pad.left + "px";
el.style.width = "100%";
el.style.height = "100%";
}
cel.style.position = "absolute";
var pad = unpackPadding(sizing.padding);
cel.style.top = pad.top + "px";
cel.style.right = pad.right + "px";
cel.style.bottom = pad.bottom + "px";
cel.style.left = pad.left + "px";
el.style.width = "100%";
el.style.height = "100%";

return {
getWidth: function() { return cel.offsetWidth; },
getHeight: function() { return cel.offsetHeight; }
getWidth: function() { return cel.getBoundingClientRect().width; },
getHeight: function() { return cel.getBoundingClientRect().height; }
};

} else {
el.style.width = px(sizing.width);
el.style.height = px(sizing.height);

return {
getWidth: function() { return el.offsetWidth; },
getHeight: function() { return el.offsetHeight; }
getWidth: function() { return cel.getBoundingClientRect().width; },
getHeight: function() { return cel.getBoundingClientRect().height; }
};
}
}
Expand Down Expand Up @@ -533,8 +531,8 @@

elementData(el, "initialized", true);
if (bindingDef.initialize) {
var result = bindingDef.initialize(el, el.offsetWidth,
el.offsetHeight);
var rect = el.getBoundingClientRect();
var result = bindingDef.initialize(el, rect.width, rect.height);
elementData(el, "init_result", result);
}
}
Expand Down Expand Up @@ -576,29 +574,30 @@
forEach(matches, function(el) {
var sizeObj = initSizing(el, binding);

var getSize = function(el) {
if (sizeObj) {
return {w: sizeObj.getWidth(), h: sizeObj.getHeight()}
} else {
var rect = el.getBoundingClientRect();
return {w: rect.width, h: rect.height}
}
};

if (hasClass(el, "html-widget-static-bound"))
return;
el.className = el.className + " html-widget-static-bound";

var initResult;
if (binding.initialize) {
initResult = binding.initialize(el,
sizeObj ? sizeObj.getWidth() : el.offsetWidth,
sizeObj ? sizeObj.getHeight() : el.offsetHeight
);
var size = getSize(el);
initResult = binding.initialize(el, size.w, size.h);
elementData(el, "init_result", initResult);
}

if (binding.resize) {
var lastSize = {
w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,
h: sizeObj ? sizeObj.getHeight() : el.offsetHeight
};
var lastSize = getSize(el);
var resizeHandler = function(e) {
var size = {
w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,
h: sizeObj ? sizeObj.getHeight() : el.offsetHeight
};
var size = getSize(el);
if (size.w === 0 && size.h === 0)
return;
if (size.w === lastSize.w && size.h === lastSize.h)
Expand Down Expand Up @@ -900,4 +899,3 @@
return result;
}
})();

Original file line number Diff line number Diff line change
Expand Up @@ -521,15 +521,17 @@ HTMLWidgets.widget({
// communication between the widget and direct manipulation events
if (x.selectize) {
var selectizeID = Object.keys(x.selectize)[i];
var items = x.selectize[selectizeID].items;
var options = x.selectize[selectizeID];
var first = [{value: "", label: "(All)"}];
var opts = {
options: first.concat(items),
searchField: "label",
valueField: "value",
labelField: "label",
maxItems: 50
};
var opts = $.extend({
options: first.concat(options.items),
searchField: "label",
valueField: "value",
labelField: "label",
maxItems: 50
},
options
);
var select = $("#" + selectizeID).find("select")[0];
var selectize = $(select).selectize(opts)[0].selectize;
// NOTE: this callback is triggered when *directly* altering
Expand Down Expand Up @@ -616,9 +618,9 @@ TraceManager.prototype.updateFilter = function(group, keys) {
traces.push(trace);
}
}
this.gd.data = traces;
}

this.gd.data = traces;
Plotly.redraw(this.gd);

// NOTE: we purposely do _not_ restore selection(s), since on filter,
Expand Down
69 changes: 69 additions & 0 deletions docs/site_libs/plotly-main-2.11.1/plotly-latest.min.js

Large diffs are not rendered by default.

62 changes: 0 additions & 62 deletions docs/site_libs/plotly-main-2.5.1/plotly-latest.min.js

This file was deleted.

6 changes: 3 additions & 3 deletions docs/site_libs/quarto-html/anchor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/site_libs/quarto-html/popper.min.js

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions docs/site_libs/quarto-html/quarto-syntax-highlighting.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 882b760

Please sign in to comment.