[med-svn] [r-cran-tibble] 09/10: Updated version 1.2 from 'upstream/1.2'

Andreas Tille tille at debian.org
Fri Sep 29 21:43:25 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to branch master
in repository r-cran-tibble.

commit 635aa64ed18fe250a11da048eb6fa8eefaa91aa7
Merge: e2f4a90 f2871df
Author: Andreas Tille <tille at debian.org>
Date:   Fri Sep 29 23:40:36 2017 +0200

    Updated version 1.2 from 'upstream/1.2'
    
    with Debian dir d99d67682d50742fcbcc74d3e0f14bd7e18e1498

 DESCRIPTION                                        |  32 ++
 LICENSE                                            |   2 +
 MD5                                                |  94 ++++++
 NAMESPACE                                          |  96 ++++++
 NEWS.md                                            | 199 ++++++++++++
 R/RcppExports.R                                    |   7 +
 R/add.R                                            | 153 ++++++++++
 R/all-equal.r                                      | 103 +++++++
 R/check-names.R                                    |  85 ++++++
 R/dataframe.R                                      | 333 +++++++++++++++++++++
 R/enframe.R                                        |  24 ++
 R/glimpse.R                                        |  99 ++++++
 R/has-name.R                                       |  18 ++
 R/repair-names.R                                   |  40 +++
 R/rownames.R                                       |  94 ++++++
 R/tbl-df.r                                         |  75 +++++
 R/tibble.R                                         |  65 ++++
 R/tribble.R                                        | 102 +++++++
 R/type-sum.r                                       | 134 +++++++++
 R/utils-format.r                                   | 288 ++++++++++++++++++
 R/utils.r                                          |  86 ++++++
 README.md                                          | 136 +++++++++
 build/vignette.rds                                 | Bin 0 -> 230 bytes
 inst/doc/formatting.R                              |  53 ++++
 inst/doc/formatting.Rmd                            | 106 +++++++
 inst/doc/formatting.html                           | 170 +++++++++++
 inst/doc/tibble.R                                  |  50 ++++
 inst/doc/tibble.Rmd                                | 128 ++++++++
 inst/doc/tibble.html                               | 204 +++++++++++++
 man/add_column.Rd                                  |  40 +++
 man/add_row.Rd                                     |  47 +++
 man/all_equal.Rd                                   |  54 ++++
 man/as_tibble.Rd                                   |  87 ++++++
 man/enframe.Rd                                     |  26 ++
 man/formatting.Rd                                  |  52 ++++
 man/glimpse.Rd                                     |  41 +++
 man/has_name.Rd                                    |  29 ++
 man/is.tibble.Rd                                   |  21 ++
 man/knit_print.trunc_mat.Rd                        |  13 +
 man/obj_sum.Rd                                     |  41 +++
 man/repair_names.Rd                                |  32 ++
 man/rownames.Rd                                    |  51 ++++
 man/tibble-package.Rd                              |  54 ++++
 man/tibble.Rd                                      |  78 +++++
 man/tribble.Rd                                     |  44 +++
 src/RcppExports.cpp                                |  18 ++
 src/matrixToDataFrame.cpp                          | 103 +++++++
 tests/testthat.R                                   |   3 +
 tests/testthat/helper-data.R                       |  12 +
 tests/testthat/helper-output.R                     |  18 ++
 tests/testthat/helper-unknown-rows.R               |  21 ++
 tests/testthat/output/glimpse/5.txt                |   1 +
 tests/testthat/output/glimpse/all-35.txt           |  11 +
 tests/testthat/output/glimpse/all-50.txt           |  11 +
 tests/testthat/output/glimpse/all-70.txt           |  11 +
 tests/testthat/output/glimpse/iris-70.txt          |   7 +
 tests/testthat/output/glimpse/iris-empty-70.txt    |   1 +
 tests/testthat/output/glimpse/mtcars-70.txt        |  13 +
 tests/testthat/output/trunc_mat/POSIXlt-8-60.txt   |  12 +
 tests/testthat/output/trunc_mat/all--30.txt        |  10 +
 tests/testthat/output/trunc_mat/all--300.txt       |  11 +
 tests/testthat/output/trunc_mat/all-1-30-0.txt     |   6 +
 tests/testthat/output/trunc_mat/all-1-30-2.txt     |   7 +
 tests/testthat/output/trunc_mat/all-knit-120.txt   |  12 +
 tests/testthat/output/trunc_mat/all-knit-60.txt    |  12 +
 tests/testthat/output/trunc_mat/iris--70.txt       |  14 +
 tests/testthat/output/trunc_mat/iris-3-5.txt       |  23 ++
 tests/testthat/output/trunc_mat/iris-5-30.txt      |  13 +
 tests/testthat/output/trunc_mat/iris_unk-10-70.txt |  13 +
 tests/testthat/output/trunc_mat/long-5-30.txt      |   9 +
 tests/testthat/output/trunc_mat/long_unk-5-30.txt  |   8 +
 tests/testthat/output/trunc_mat/mtcars-8-30.txt    |  17 ++
 tests/testthat/output/trunc_mat/mtcars-knit-60.txt |  20 ++
 tests/testthat/output/trunc_mat/wide-8-60.txt      |   6 +
 .../output/trunc_mat/zero-cols_unk-5-30.txt        |   2 +
 .../output/trunc_mat/zero-rows_unk-5-30.txt        |   6 +
 tests/testthat/output/trunc_mat/zero_cols-5-30.txt |   1 +
 tests/testthat/output/trunc_mat/zero_rows--30.txt  |   3 +
 tests/testthat/test-add.R                          | 216 +++++++++++++
 tests/testthat/test-data-frame.R                   | 210 +++++++++++++
 tests/testthat/test-enframe.R                      |  22 ++
 tests/testthat/test-equality.R                     |  92 ++++++
 tests/testthat/test-glimpse.R                      |  66 ++++
 tests/testthat/test-has-name.R                     |  24 ++
 tests/testthat/test-lst.R                          |  13 +
 tests/testthat/test-matrix.R                       |  70 +++++
 tests/testthat/test-nibble.R                       | 106 +++++++
 tests/testthat/test-obj-sum.R                      |  43 +++
 tests/testthat/test-options.R                      |  22 ++
 tests/testthat/test-repair_names.R                 |  42 +++
 tests/testthat/test-rownames.R                     |  53 ++++
 tests/testthat/test-tbl-df.R                       | 153 ++++++++++
 tests/testthat/test-trunc-mat.R                    | 125 ++++++++
 vignettes/formatting.Rmd                           | 106 +++++++
 vignettes/tibble.Rmd                               | 128 ++++++++
 95 files changed, 5612 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-tibble.git



More information about the debian-med-commit mailing list