Skip to content

Commit

Permalink
Deploying to gh-pages from @ 6e51f13 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jul 20, 2024
1 parent 30aa267 commit d764353
Show file tree
Hide file tree
Showing 55 changed files with 3,450 additions and 2,395 deletions.
4 changes: 4 additions & 0 deletions CITATION.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@
<li>
<a class="dropdown-item" href="./vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions LICENSE.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
<li>
<a class="dropdown-item" href="./vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
<li>
<a class="dropdown-item" href="./vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
Binary file modified freeze.rds
Binary file not shown.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@
<li>
<a class="dropdown-item" href="./vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
191 changes: 95 additions & 96 deletions man/format_tt.html

Large diffs are not rendered by default.

250 changes: 127 additions & 123 deletions man/group_tt.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions man/plot_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
<li>
<a class="dropdown-item" href="../vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
6 changes: 5 additions & 1 deletion man/print.tinytable.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
<li>
<a class="dropdown-item" href="../vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down Expand Up @@ -358,7 +362,7 @@ <h3 class="anchored" data-anchor-id="description">Description</h3>
<section id="usage" class="level3">
<h3 class="anchored" data-anchor-id="usage">Usage</h3>
<pre><code class="language-R">## S3 method for class 'tinytable'
print(x, output = getOption("tinytable_print_output", default = NULL), ...)
print(x, output = get_option("tinytable_print_output", default = NULL), ...)
</code></pre>
</section>
<section id="arguments" class="level3">
Expand Down
96 changes: 50 additions & 46 deletions man/rbind2-tinytable-tinytable-method.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,10 @@
<li>
<a class="dropdown-item" href="../vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down Expand Up @@ -483,21 +487,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_3zhe2e59s7agowlexygz(i, j, css_id) {
var table = document.getElementById("tinytable_3zhe2e59s7agowlexygz");
function styleCell_xs023gmzfcg2jx8sp3bm(i, j, css_id) {
var table = document.getElementById("tinytable_xs023gmzfcg2jx8sp3bm");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_3zhe2e59s7agowlexygz');
var table = document.getElementById('tinytable_xs023gmzfcg2jx8sp3bm');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_3zhe2e59s7agowlexygz(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_3zhe2e59s7agowlexygz");
function spanCell_xs023gmzfcg2jx8sp3bm(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_xs023gmzfcg2jx8sp3bm");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -523,18 +527,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_3zhe2e59s7agowlexygz(0, 0, 'tinytable_css_idkjggsipvits24dpcme6d') })
window.addEventListener('load', function () { styleCell_3zhe2e59s7agowlexygz(0, 1, 'tinytable_css_idkjggsipvits24dpcme6d') })
window.addEventListener('load', function () { styleCell_3zhe2e59s7agowlexygz(0, 2, 'tinytable_css_idkjggsipvits24dpcme6d') })
window.addEventListener('load', function () { styleCell_3zhe2e59s7agowlexygz(0, 3, 'tinytable_css_idkjggsipvits24dpcme6d') })
window.addEventListener('load', function () { styleCell_3zhe2e59s7agowlexygz(0, 4, 'tinytable_css_idkjggsipvits24dpcme6d') })
window.addEventListener('load', function () { styleCell_xs023gmzfcg2jx8sp3bm(0, 0, 'tinytable_css_idsgghbqwyhe3gm2fejue3') })
window.addEventListener('load', function () { styleCell_xs023gmzfcg2jx8sp3bm(0, 1, 'tinytable_css_idsgghbqwyhe3gm2fejue3') })
window.addEventListener('load', function () { styleCell_xs023gmzfcg2jx8sp3bm(0, 2, 'tinytable_css_idsgghbqwyhe3gm2fejue3') })
window.addEventListener('load', function () { styleCell_xs023gmzfcg2jx8sp3bm(0, 3, 'tinytable_css_idsgghbqwyhe3gm2fejue3') })
window.addEventListener('load', function () { styleCell_xs023gmzfcg2jx8sp3bm(0, 4, 'tinytable_css_idsgghbqwyhe3gm2fejue3') })
</script>

<style>
.table td.tinytable_css_idkjggsipvits24dpcme6d, .table th.tinytable_css_idkjggsipvits24dpcme6d { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idsgghbqwyhe3gm2fejue3, .table th.tinytable_css_idsgghbqwyhe3gm2fejue3 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_3zhe2e59s7agowlexygz" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_xs023gmzfcg2jx8sp3bm" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -599,21 +603,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_cx3jx62z70ykr8ga9jxj(i, j, css_id) {
var table = document.getElementById("tinytable_cx3jx62z70ykr8ga9jxj");
function styleCell_6ucpel59nmp4wie451ae(i, j, css_id) {
var table = document.getElementById("tinytable_6ucpel59nmp4wie451ae");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_cx3jx62z70ykr8ga9jxj');
var table = document.getElementById('tinytable_6ucpel59nmp4wie451ae');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_cx3jx62z70ykr8ga9jxj(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_cx3jx62z70ykr8ga9jxj");
function spanCell_6ucpel59nmp4wie451ae(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_6ucpel59nmp4wie451ae");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -639,18 +643,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_cx3jx62z70ykr8ga9jxj(0, 0, 'tinytable_css_idj7gg13ek1qr70iirep7p') })
window.addEventListener('load', function () { styleCell_cx3jx62z70ykr8ga9jxj(0, 1, 'tinytable_css_idj7gg13ek1qr70iirep7p') })
window.addEventListener('load', function () { styleCell_cx3jx62z70ykr8ga9jxj(0, 2, 'tinytable_css_idj7gg13ek1qr70iirep7p') })
window.addEventListener('load', function () { styleCell_cx3jx62z70ykr8ga9jxj(0, 3, 'tinytable_css_idj7gg13ek1qr70iirep7p') })
window.addEventListener('load', function () { styleCell_cx3jx62z70ykr8ga9jxj(0, 4, 'tinytable_css_idj7gg13ek1qr70iirep7p') })
window.addEventListener('load', function () { styleCell_6ucpel59nmp4wie451ae(0, 0, 'tinytable_css_idgb8lzvf4tl34z0trurw1') })
window.addEventListener('load', function () { styleCell_6ucpel59nmp4wie451ae(0, 1, 'tinytable_css_idgb8lzvf4tl34z0trurw1') })
window.addEventListener('load', function () { styleCell_6ucpel59nmp4wie451ae(0, 2, 'tinytable_css_idgb8lzvf4tl34z0trurw1') })
window.addEventListener('load', function () { styleCell_6ucpel59nmp4wie451ae(0, 3, 'tinytable_css_idgb8lzvf4tl34z0trurw1') })
window.addEventListener('load', function () { styleCell_6ucpel59nmp4wie451ae(0, 4, 'tinytable_css_idgb8lzvf4tl34z0trurw1') })
</script>

<style>
.table td.tinytable_css_idj7gg13ek1qr70iirep7p, .table th.tinytable_css_idj7gg13ek1qr70iirep7p { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idgb8lzvf4tl34z0trurw1, .table th.tinytable_css_idgb8lzvf4tl34z0trurw1 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_cx3jx62z70ykr8ga9jxj" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_6ucpel59nmp4wie451ae" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -716,21 +720,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_6b92lgi62tdhjwwrb5yp(i, j, css_id) {
var table = document.getElementById("tinytable_6b92lgi62tdhjwwrb5yp");
function styleCell_pknfj64ii2tzcrq4slnb(i, j, css_id) {
var table = document.getElementById("tinytable_pknfj64ii2tzcrq4slnb");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_6b92lgi62tdhjwwrb5yp');
var table = document.getElementById('tinytable_pknfj64ii2tzcrq4slnb');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_6b92lgi62tdhjwwrb5yp(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_6b92lgi62tdhjwwrb5yp");
function spanCell_pknfj64ii2tzcrq4slnb(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_pknfj64ii2tzcrq4slnb");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -756,18 +760,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_6b92lgi62tdhjwwrb5yp(0, 0, 'tinytable_css_id4t506y4gnqpwmxxbmtoo') })
window.addEventListener('load', function () { styleCell_6b92lgi62tdhjwwrb5yp(0, 1, 'tinytable_css_id4t506y4gnqpwmxxbmtoo') })
window.addEventListener('load', function () { styleCell_6b92lgi62tdhjwwrb5yp(0, 2, 'tinytable_css_id4t506y4gnqpwmxxbmtoo') })
window.addEventListener('load', function () { styleCell_6b92lgi62tdhjwwrb5yp(0, 3, 'tinytable_css_id4t506y4gnqpwmxxbmtoo') })
window.addEventListener('load', function () { styleCell_6b92lgi62tdhjwwrb5yp(0, 4, 'tinytable_css_id4t506y4gnqpwmxxbmtoo') })
window.addEventListener('load', function () { styleCell_pknfj64ii2tzcrq4slnb(0, 0, 'tinytable_css_idpl8yrd5zp4p2usd46ix4') })
window.addEventListener('load', function () { styleCell_pknfj64ii2tzcrq4slnb(0, 1, 'tinytable_css_idpl8yrd5zp4p2usd46ix4') })
window.addEventListener('load', function () { styleCell_pknfj64ii2tzcrq4slnb(0, 2, 'tinytable_css_idpl8yrd5zp4p2usd46ix4') })
window.addEventListener('load', function () { styleCell_pknfj64ii2tzcrq4slnb(0, 3, 'tinytable_css_idpl8yrd5zp4p2usd46ix4') })
window.addEventListener('load', function () { styleCell_pknfj64ii2tzcrq4slnb(0, 4, 'tinytable_css_idpl8yrd5zp4p2usd46ix4') })
</script>

<style>
.table td.tinytable_css_id4t506y4gnqpwmxxbmtoo, .table th.tinytable_css_id4t506y4gnqpwmxxbmtoo { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idpl8yrd5zp4p2usd46ix4, .table th.tinytable_css_idpl8yrd5zp4p2usd46ix4 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_6b92lgi62tdhjwwrb5yp" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_pknfj64ii2tzcrq4slnb" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -826,21 +830,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_3oj44npg4gk5e6s2a4ve(i, j, css_id) {
var table = document.getElementById("tinytable_3oj44npg4gk5e6s2a4ve");
function styleCell_384eyac3m9wwy4wi9k53(i, j, css_id) {
var table = document.getElementById("tinytable_384eyac3m9wwy4wi9k53");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_3oj44npg4gk5e6s2a4ve');
var table = document.getElementById('tinytable_384eyac3m9wwy4wi9k53');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_3oj44npg4gk5e6s2a4ve(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_3oj44npg4gk5e6s2a4ve");
function spanCell_384eyac3m9wwy4wi9k53(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_384eyac3m9wwy4wi9k53");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -866,16 +870,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_3oj44npg4gk5e6s2a4ve(0, 0, 'tinytable_css_idwieqf25eg6b9pxxvcfd3') })
window.addEventListener('load', function () { styleCell_3oj44npg4gk5e6s2a4ve(0, 1, 'tinytable_css_idwieqf25eg6b9pxxvcfd3') })
window.addEventListener('load', function () { styleCell_3oj44npg4gk5e6s2a4ve(0, 2, 'tinytable_css_idwieqf25eg6b9pxxvcfd3') })
window.addEventListener('load', function () { styleCell_384eyac3m9wwy4wi9k53(0, 0, 'tinytable_css_idzdul7bwxg6u6plhg80cm') })
window.addEventListener('load', function () { styleCell_384eyac3m9wwy4wi9k53(0, 1, 'tinytable_css_idzdul7bwxg6u6plhg80cm') })
window.addEventListener('load', function () { styleCell_384eyac3m9wwy4wi9k53(0, 2, 'tinytable_css_idzdul7bwxg6u6plhg80cm') })
</script>

<style>
.table td.tinytable_css_idwieqf25eg6b9pxxvcfd3, .table th.tinytable_css_idwieqf25eg6b9pxxvcfd3 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idzdul7bwxg6u6plhg80cm, .table th.tinytable_css_idzdul7bwxg6u6plhg80cm { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_3oj44npg4gk5e6s2a4ve" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_384eyac3m9wwy4wi9k53" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down
4 changes: 4 additions & 0 deletions man/save_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,10 @@
<li>
<a class="dropdown-item" href="../vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions man/style_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,10 @@
<li>
<a class="dropdown-item" href="../vignettes/custom.html">
<span class="dropdown-text">Customization</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
Loading

0 comments on commit d764353

Please sign in to comment.