Browse Source

magrittr

tags/v0.6.2 v0.6.2
boB Rudis 4 years ago
parent
commit
f0f61289b6
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 2
      CRAN-RELEASE
  2. 2
      DESCRIPTION
  3. 2
      R/utils-pipe.R
  4. 20
      cran-comments.md
  5. 3
      man/docx_extract_all.Rd
  6. 3
      man/docx_extract_all_tbls.Rd
  7. 9
      man/docx_extract_tbl.Rd
  8. 1
      man/docxtractr.Rd
  9. 2
      man/pipe.Rd

2
CRAN-RELEASE

@ -0,0 +1,2 @@
This package was submitted to CRAN on 2020-06-13.
Once it is accepted, delete this file and tag the release (commit 6dc04f3881).

2
DESCRIPTION

@ -34,4 +34,4 @@ Imports:
utils,
httr,
magrittr
RoxygenNote: 6.1.1
RoxygenNote: 7.1.0

2
R/utils-pipe.R

@ -1,6 +1,6 @@
#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details.
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe

20
cran-comments.md

@ -1,22 +1,10 @@
## Test environments
* local OS X install, R 3.5.2
* ubuntu 14.04 (on travis-ci), R 3.5.2
* r-hub (fedora & windows)
* win-builder (devel and release)
* local R installation, R 4.0.1
* ubuntu 16.04 (on travis-ci), R 4.0.1
* win-builder (devel)
## R CMD check results
0 errors | 0 warnings | 1 note
* checking CRAN incoming feasibility ... NOTE
---
This is an update to fix the errors introduced by the
recent tidyverse update as noted by Kurt on 2018-01-05
(https://cran.r-project.org/web/checks/check_results_docxtractr.html)
The code has been modified to account for the new
behavior of the tidyverse. All tests and examples have been
left intact.
* This is a update that tweaks some existing functionality and adds support for using LibreOffice (if installed) to extract information from PPTX files.

3
man/docx_extract_all.Rd

@ -4,8 +4,7 @@
\alias{docx_extract_all}
\title{Extract all tables from a Word document}
\usage{
docx_extract_all(docx, guess_header = TRUE, preserve = FALSE,
trim = TRUE)
docx_extract_all(docx, guess_header = TRUE, preserve = FALSE, trim = TRUE)
}
\arguments{
\item{docx}{\code{docx} object read with \code{read_docx}}

3
man/docx_extract_all_tbls.Rd

@ -4,8 +4,7 @@
\alias{docx_extract_all_tbls}
\title{Extract all tables from a Word document}
\usage{
docx_extract_all_tbls(docx, guess_header = TRUE, preserve = FALSE,
trim = TRUE)
docx_extract_all_tbls(docx, guess_header = TRUE, preserve = FALSE, trim = TRUE)
}
\arguments{
\item{docx}{\code{docx} object read with \code{read_docx}}

9
man/docx_extract_tbl.Rd

@ -4,8 +4,13 @@
\alias{docx_extract_tbl}
\title{Extract a table from a Word document}
\usage{
docx_extract_tbl(docx, tbl_number = 1, header = TRUE,
preserve = FALSE, trim = TRUE)
docx_extract_tbl(
docx,
tbl_number = 1,
header = TRUE,
preserve = FALSE,
trim = TRUE
)
}
\arguments{
\item{docx}{\code{docx} object read with \code{read_docx}}

1
man/docxtractr.Rd

@ -3,7 +3,6 @@
\docType{package}
\name{docxtractr}
\alias{docxtractr}
\alias{docxtractr-package}
\title{Extract Data Tables and Comments from 'Microsoft' 'Word' Documents}
\description{
Microsoft Word `docx`` files provide an XML structure that is fairly

2
man/pipe.Rd

@ -7,6 +7,6 @@
lhs \%>\% rhs
}
\description{
See \code{magrittr::\link[magrittr]{\%>\%}} for details.
See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
}
\keyword{internal}

Loading…
Cancel
Save