diff --git a/docs/404.html b/docs/404.html index 74a26a6..9d3f94e 100644 --- a/docs/404.html +++ b/docs/404.html @@ -79,7 +79,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/articles/comparedf.html b/docs/articles/comparedf.html index fad261b..c830fa5 100644 --- a/docs/articles/comparedf.html +++ b/docs/articles/comparedf.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/articles/freqlist.html b/docs/articles/freqlist.html index ddd96e1..9939ea2 100644 --- a/docs/articles/freqlist.html +++ b/docs/articles/freqlist.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/articles/index.html b/docs/articles/index.html index 65e6bff..2254285 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -79,7 +79,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/articles/labels.html b/docs/articles/labels.html index 01a3f62..8343f6b 100644 --- a/docs/articles/labels.html +++ b/docs/articles/labels.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2 @@ -127,9 +127,8 @@

 library(arsenal)
 data(mockstudy)
-library(magrittr)
-
## Warning: package 'magrittr' was built under R version 4.0.2
-
+library(magrittr)
+
 # for 'freqlist' examples
 tab.ex <- table(mockstudy[c("arm", "sex", "mdquality.s")], useNA="ifany")
@@ -140,7 +139,7 @@

Set labels in the function call

The summary() method for tableby(), modelsum(), and freqlist() objects contains a labelTranslations = argument to specify labels in the function call. Note that the freqlist() function matches labels in order, whereas the other two match labels by name. The labels can be input as a list or a character vector.

-
+
 summary(freqlist(tab.ex),
         labelTranslations = c(arm = "Treatment Arm", sex = "Gender", mdquality.s = "LASA QOL"))
@@ -318,7 +317,7 @@

-
+
 summary(tableby(arm ~ sex + age, data = mockstudy),
         labelTranslations = c(sex = "SEX", age = "Age, yrs"))
@@ -381,7 +380,7 @@

-
+
 summary(modelsum(bmi ~ age, adjust = ~sex, data = mockstudy),
         labelTranslations = list(sexFemale = "Female", age = "Age, yrs"))
@@ -425,7 +424,7 @@

Modify labels after the fact

Another option is to add labels after you have created the object. To do this, you can use the form labels(x) <- value or use the pipe-able version, set_labels().

-
+
 # the non-pipe version; somewhat clunky
 tmp <- freqlist(tab.ex)
 labels(tmp) <- c(arm = "Treatment Arm", sex = "Gender", mdquality.s = "LASA QOL")
@@ -605,7 +604,7 @@ 

-
+
 # piped--much cleaner
 mockstudy %>% 
   tableby(arm ~ sex + age, data = .) %>% 
@@ -671,7 +670,7 @@ 

-
+
 mockstudy %>% 
   modelsum(bmi ~ age, adjust = ~ sex, data = .) %>% 
   set_labels(list(sexFemale = "Female", age = "Age, yrs")) %>% 
@@ -718,23 +717,23 @@ 

Add labels to a data.frame

tableby() and modelsum() also allow you to have label attributes on the data. Note that by default these attributes usually get dropped upon subsetting, but tableby() and modelsum() use the keep.labels() function to retain them.

-
+
 mockstudy.lab <- keep.labels(mockstudy)
 class(mockstudy$age)

[1] “integer”

-
+
 class(mockstudy.lab$age)

[1] “keep_labels” “integer”

To undo this, simply loosen.labels():

-
+
 class(loosen.labels(mockstudy.lab)$age)

[1] “integer”

You can set attributes one at a time in two ways:

-
+
 attr(mockstudy.lab$sex, "label") <- "Sex"
 labels(mockstudy.lab$age) <- "Age, yrs"

…or all at once:

-
+
 labels(mockstudy.lab) <- list(sex = "Sex", age = "Age, yrs")
 summary(tableby(arm ~ sex + age, data = mockstudy.lab))
@@ -798,7 +797,7 @@

You can pipe this, too.

-
+
 mockstudy %>% 
   set_labels(list(sex = "SEX", age = "Age, yrs")) %>% 
   modelsum(bmi ~ age, adjust = ~ sex, data = .) %>% 
@@ -840,7 +839,7 @@ 

To extract labels from a data.frame, simply use the labels() function:

-
+
 labels(mockstudy.lab)
## $case
 ## NULL
@@ -888,7 +887,7 @@ 

When labels get long

tableby() and modelsum() both support the wrapping of long labels. Consider the width= argument in the print() function:

-
+
 mockstudy %>% 
   set_labels(list(age = "This is a really long label for the arm variable")) %>% 
   tableby(sex ~ age, data = .) %>% 
diff --git a/docs/articles/modelsum.html b/docs/articles/modelsum.html
index a4d595d..9301d4e 100644
--- a/docs/articles/modelsum.html
+++ b/docs/articles/modelsum.html
@@ -38,7 +38,7 @@
       
       
         arsenal
-        3.6.1
+        3.6.2
       
     
@@ -886,27 +886,33 @@

> > # It can also be calculated using the survConcordance function > survConcordance(Surv(fu.time, fu.stat) ~ predict(fit2), data=mockstudy) -$concordance -concordant - 0.5684325 - -$stats -concordant discordant tied.risk tied.time std(c-d) - 620221.00 470282.00 5021.00 766.00 19235.49 - -$n -[1] 1499 - -$std.err - std(c-d) -0.008779125 - -$call -survConcordance(formula = Surv(fu.time, fu.stat) ~ predict(fit2), - data = mockstudy) - -attr(,"class") -[1] "survConcordance"

+Warning: 'survConcordance' is deprecated. +Use 'concordance' instead. +See help("Deprecated") +Warning: 'survConcordance.fit' is deprecated. +Use 'concordancefit' instead. +See help("Deprecated") +$concordance +concordant + 0.5684325 + +$stats +concordant discordant tied.risk tied.time std(c-d) + 620221.00 470282.00 5021.00 766.00 19235.49 + +$n +[1] 1499 + +$std.err + std(c-d) +0.008779125 + +$call +survConcordance(formula = Surv(fu.time, fu.stat) ~ predict(fit2), + data = mockstudy) + +attr(,"class") +[1] "survConcordance"

diff --git a/docs/articles/modelsum_files/figure-html/poisson-1.png b/docs/articles/modelsum_files/figure-html/poisson-1.png index e974334..2b552d9 100644 Binary files a/docs/articles/modelsum_files/figure-html/poisson-1.png and b/docs/articles/modelsum_files/figure-html/poisson-1.png differ diff --git a/docs/articles/modelsum_files/figure-html/survival-2.png b/docs/articles/modelsum_files/figure-html/survival-2.png index 51267aa..228fa29 100644 Binary files a/docs/articles/modelsum_files/figure-html/survival-2.png and b/docs/articles/modelsum_files/figure-html/survival-2.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-1.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-1.png index 3a6d607..7bed5ab 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-1.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-1.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-3.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-3.png index def8b5c..61f8c08 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-3.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-3.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-4.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-4.png index ce559c6..2ee46f8 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-4.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-3-4.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-1.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-1.png index cce4d25..c4fdacd 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-1.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-1.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-3.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-3.png index 0b6e266..4dd899a 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-3.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-3.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-4.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-4.png index a6a9b06..88af6fe 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-4.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-5-4.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-6-1.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-6-1.png index c483f8c..81d4e97 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-6-1.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-6-1.png differ diff --git a/docs/articles/modelsum_files/figure-html/unnamed-chunk-9-1.png b/docs/articles/modelsum_files/figure-html/unnamed-chunk-9-1.png index 326830a..309fc6d 100644 Binary files a/docs/articles/modelsum_files/figure-html/unnamed-chunk-9-1.png and b/docs/articles/modelsum_files/figure-html/unnamed-chunk-9-1.png differ diff --git a/docs/articles/paired.html b/docs/articles/paired.html index 5da231e..67f1e0e 100644 --- a/docs/articles/paired.html +++ b/docs/articles/paired.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2

diff --git a/docs/articles/tableby.html b/docs/articles/tableby.html index 4685c13..3c40376 100644 --- a/docs/articles/tableby.html +++ b/docs/articles/tableby.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2
@@ -958,7 +958,7 @@

The functionality listed in this next paragraph is coming soon but needs an upgraded version of RStudio If you want to modify fonts used for the table, then you’ll need to add an extra line to your header at the beginning of your file. You can take the WordStylesReference01.docx file and modify the fonts (storing the format preferences in your project directory). To see how this works, run your report once using WordStylesReference01.docx and then WordStylesReference02.docx.

output: word_document
   reference_docx: /projects/bsi/gentools/R/lib320/arsenal/doc/WordStylesReference01.docx 
-

For more informating on changing the look/feel of your Word document, see the Rmarkdown documentation website.

+

For more information on changing the look/feel of your Word document, see the Rmarkdown documentation website.

diff --git a/docs/articles/write2.html b/docs/articles/write2.html index 36a77e1..32a0b7f 100644 --- a/docs/articles/write2.html +++ b/docs/articles/write2.html @@ -38,7 +38,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/authors.html b/docs/authors.html index df0fcc1..a718bd4 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -79,7 +79,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/index.html b/docs/index.html index c77883c..5c707dc 100644 --- a/docs/index.html +++ b/docs/index.html @@ -48,7 +48,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/news/index.html b/docs/news/index.html index 460a297..b1195de 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -79,7 +79,7 @@ arsenal - 3.6.1 + 3.6.2
@@ -152,9 +152,18 @@

Changelog

Source: NEWS.md
+
+

+arsenal v3.6.2 Unreleased +

+
    +
  • Fixed one URL

  • +
  • Fixed two modelsum test errors that were a result of rounding on macos.

  • +
+

-arsenal v3.6.1 Unreleased +arsenal v3.6.1 2021-02-06

  • Fixed two URLs
  • diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index ca7b7cc..3d89e2e 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -9,5 +9,5 @@ articles: paired: paired.html tableby: tableby.html write2: write2.html -last_built: 2021-02-05T15:25Z +last_built: 2021-02-16T22:17Z diff --git a/docs/reference/NA.operations.html b/docs/reference/NA.operations.html index 8756975..3032686 100644 --- a/docs/reference/NA.operations.html +++ b/docs/reference/NA.operations.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/arsenal-defunct.html b/docs/reference/arsenal-defunct.html index 31f0a90..9982ab2 100644 --- a/docs/reference/arsenal-defunct.html +++ b/docs/reference/arsenal-defunct.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/arsenal-deprecated.html b/docs/reference/arsenal-deprecated.html index 1c235de..1ca0e38 100644 --- a/docs/reference/arsenal-deprecated.html +++ b/docs/reference/arsenal-deprecated.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2

diff --git a/docs/reference/arsenal.html b/docs/reference/arsenal.html index 4f9fc18..67ab3f8 100644 --- a/docs/reference/arsenal.html +++ b/docs/reference/arsenal.html @@ -82,7 +82,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/arsenal_table.html b/docs/reference/arsenal_table.html index 5206265..fa1db78 100644 --- a/docs/reference/arsenal_table.html +++ b/docs/reference/arsenal_table.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/as.data.frame.freqlist.html b/docs/reference/as.data.frame.freqlist.html index 4312536..0470087 100644 --- a/docs/reference/as.data.frame.freqlist.html +++ b/docs/reference/as.data.frame.freqlist.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/as.data.frame.modelsum.html b/docs/reference/as.data.frame.modelsum.html index f6d8bf0..cd419ae 100644 --- a/docs/reference/as.data.frame.modelsum.html +++ b/docs/reference/as.data.frame.modelsum.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2
diff --git a/docs/reference/as.data.frame.tableby.html b/docs/reference/as.data.frame.tableby.html index 91473ff..711f161 100644 --- a/docs/reference/as.data.frame.tableby.html +++ b/docs/reference/as.data.frame.tableby.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/comparedf.control.html b/docs/reference/comparedf.control.html index dbd6130..749608a 100644 --- a/docs/reference/comparedf.control.html +++ b/docs/reference/comparedf.control.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/comparedf.html b/docs/reference/comparedf.html index ef74ef2..35e425a 100644 --- a/docs/reference/comparedf.html +++ b/docs/reference/comparedf.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/comparedf.tolerances.html b/docs/reference/comparedf.tolerances.html index 99b2e01..f5befa1 100644 --- a/docs/reference/comparedf.tolerances.html +++ b/docs/reference/comparedf.tolerances.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/diffs.html b/docs/reference/diffs.html index 8812bec..df28529 100644 --- a/docs/reference/diffs.html +++ b/docs/reference/diffs.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/formulize.html b/docs/reference/formulize.html index 6f9ad8c..3310c2d 100644 --- a/docs/reference/formulize.html +++ b/docs/reference/formulize.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/freq.control.html b/docs/reference/freq.control.html index 0339708..b7cc8c0 100644 --- a/docs/reference/freq.control.html +++ b/docs/reference/freq.control.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/freqlist.html b/docs/reference/freqlist.html index 00b5484..0595f54 100644 --- a/docs/reference/freqlist.html +++ b/docs/reference/freqlist.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/freqlist.internal.html b/docs/reference/freqlist.internal.html index 144a2c8..ea93da3 100644 --- a/docs/reference/freqlist.internal.html +++ b/docs/reference/freqlist.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/grapes-nin-grapes.html b/docs/reference/grapes-nin-grapes.html index 94e94dd..2030da6 100644 --- a/docs/reference/grapes-nin-grapes.html +++ b/docs/reference/grapes-nin-grapes.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/index.html b/docs/reference/index.html index 760810d..e3f8fc2 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -79,7 +79,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/internal.functions.html b/docs/reference/internal.functions.html index e3ec9c6..0cab153 100644 --- a/docs/reference/internal.functions.html +++ b/docs/reference/internal.functions.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/keep.labels.html b/docs/reference/keep.labels.html index c402291..c335071 100644 --- a/docs/reference/keep.labels.html +++ b/docs/reference/keep.labels.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/labels.html b/docs/reference/labels.html index 949dc44..14568a2 100644 --- a/docs/reference/labels.html +++ b/docs/reference/labels.html @@ -83,7 +83,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/mdy.Date.html b/docs/reference/mdy.Date.html index f8604f2..2ed4450 100644 --- a/docs/reference/mdy.Date.html +++ b/docs/reference/mdy.Date.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/mockstudy.html b/docs/reference/mockstudy.html index 1023aec..c4d7a6d 100644 --- a/docs/reference/mockstudy.html +++ b/docs/reference/mockstudy.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/modelsum.control.html b/docs/reference/modelsum.control.html index 093cd49..b00469e 100644 --- a/docs/reference/modelsum.control.html +++ b/docs/reference/modelsum.control.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/modelsum.family.html b/docs/reference/modelsum.family.html index 913013d..45b0d18 100644 --- a/docs/reference/modelsum.family.html +++ b/docs/reference/modelsum.family.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/modelsum.html b/docs/reference/modelsum.html index 74ef5a5..45fa3a7 100644 --- a/docs/reference/modelsum.html +++ b/docs/reference/modelsum.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/modelsum.internal.html b/docs/reference/modelsum.internal.html index 86bfeec..75bc305 100644 --- a/docs/reference/modelsum.internal.html +++ b/docs/reference/modelsum.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/padjust.html b/docs/reference/padjust.html index d0e16dd..1a5da06 100644 --- a/docs/reference/padjust.html +++ b/docs/reference/padjust.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/paired.control.html b/docs/reference/paired.control.html index 342b147..1ee5e26 100644 --- a/docs/reference/paired.control.html +++ b/docs/reference/paired.control.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/paired.html b/docs/reference/paired.html index e43a713..010e700 100644 --- a/docs/reference/paired.html +++ b/docs/reference/paired.html @@ -83,7 +83,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/paired.internal.html b/docs/reference/paired.internal.html index 965e4cd..1346903 100644 --- a/docs/reference/paired.internal.html +++ b/docs/reference/paired.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/selectall.html b/docs/reference/selectall.html index eefe7d0..d7ceac6 100644 --- a/docs/reference/selectall.html +++ b/docs/reference/selectall.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/summary.comparedf.html b/docs/reference/summary.comparedf.html index 71b4c20..ce4a7a5 100644 --- a/docs/reference/summary.comparedf.html +++ b/docs/reference/summary.comparedf.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/summary.freqlist.html b/docs/reference/summary.freqlist.html index 8cab827..2796a24 100644 --- a/docs/reference/summary.freqlist.html +++ b/docs/reference/summary.freqlist.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/summary.modelsum.html b/docs/reference/summary.modelsum.html index 10dd96e..6a8ce1f 100644 --- a/docs/reference/summary.modelsum.html +++ b/docs/reference/summary.modelsum.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/summary.tableby.html b/docs/reference/summary.tableby.html index 14d09a4..7806e27 100644 --- a/docs/reference/summary.tableby.html +++ b/docs/reference/summary.tableby.html @@ -81,7 +81,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/tableby.control.html b/docs/reference/tableby.control.html index 6c269a2..b35a18e 100644 --- a/docs/reference/tableby.control.html +++ b/docs/reference/tableby.control.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/tableby.html b/docs/reference/tableby.html index a7bf357..0e77b07 100644 --- a/docs/reference/tableby.html +++ b/docs/reference/tableby.html @@ -83,7 +83,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/tableby.internal.html b/docs/reference/tableby.internal.html index 5b338f4..0cc0e59 100644 --- a/docs/reference/tableby.internal.html +++ b/docs/reference/tableby.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/tableby.stats.html b/docs/reference/tableby.stats.html index 0b60aec..883ea8d 100644 --- a/docs/reference/tableby.stats.html +++ b/docs/reference/tableby.stats.html @@ -82,7 +82,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/tableby.stats.internal.html b/docs/reference/tableby.stats.internal.html index 7dbc085..1708bbc 100644 --- a/docs/reference/tableby.stats.internal.html +++ b/docs/reference/tableby.stats.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/write2.html b/docs/reference/write2.html index 72939d4..2dc2431 100644 --- a/docs/reference/write2.html +++ b/docs/reference/write2.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/write2.internal.html b/docs/reference/write2.internal.html index 07cca2e..9159a05 100644 --- a/docs/reference/write2.internal.html +++ b/docs/reference/write2.internal.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/write2specific.html b/docs/reference/write2specific.html index 4626959..615b23c 100644 --- a/docs/reference/write2specific.html +++ b/docs/reference/write2specific.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2 diff --git a/docs/reference/yaml.html b/docs/reference/yaml.html index 6a112b8..101d6fd 100644 --- a/docs/reference/yaml.html +++ b/docs/reference/yaml.html @@ -80,7 +80,7 @@ arsenal - 3.6.1 + 3.6.2