-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from randrescastaneda/dev
version 0.0.1 submitted to CRAN
- Loading branch information
Showing
36 changed files
with
454 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,9 @@ | |
^pkgdown$ | ||
^\.github$ | ||
^codecov\.yml$ | ||
^revdep$ | ||
cran-comments.md | ||
|
||
^doc$ | ||
^Meta$ | ||
^CRAN-RELEASE$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
.Ruserdata | ||
|
||
inst/doc | ||
doc | ||
Meta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This package was submitted to CRAN on 2021-03-31. | ||
Once it is accepted, delete this file and tag the release (commit 04d10fe). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
Package: joyn | ||
Type: Package | ||
Title: Tool for diagnosys and useful features of joins of data frames | ||
Version: 0.0.0.9008 | ||
Author: Who wrote it | ||
Title: Tool for Diagnosis of Tables Joins and Complementary Join Features | ||
Version: 0.0.1 | ||
Authors@R: person("R.Andres", "Castaneda", | ||
email = "[email protected]", | ||
role = c("aut", "cre")) | ||
Description: Tool for diagnosys of joins of data frames. It combines the speed | ||
`data.table`, the versatilit of `dplyr`, and the diagnosys and features of | ||
Description: Tool for diagnosis of joins of data frames. It combines the speed | ||
`data.table`, the flexibility of `dplyr`, and the diagnosis and features of | ||
the `merge` command in `Stata`. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# 0.0.1 | ||
First Public release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.onLoad <- function(libname, pkgname) { | ||
op <- options() | ||
op.joyn <- list( | ||
joyn.verbose = TRUE | ||
) | ||
toset <- !(names(op.joyn) %in% names(op)) | ||
if(any(toset)) options(op.joyn[toset]) | ||
|
||
invisible() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## Resubmission | ||
This is a resubmission. In this version I have: | ||
|
||
* updated the documentation of argument `verbose` in merge.R. | ||
|
||
## Test environments | ||
* Local Windows 10, R 4.0.4 | ||
* Github Actions checked for windows-latest (release), macOS-latest (release), ubuntu-20.04 (release), ubuntu-20.04 (devel) | ||
|
||
## R CMD check results | ||
|
||
* When run devtools::check() locally, I got | ||
0 errors | 1 warning | 0 notes | ||
|
||
Twarning was: | ||
checking data for ASCII and uncompressed saves ... OK | ||
WARNING | ||
'qpdf' is needed for checks on size reduction of PDFs | ||
|
||
* When run check_rhub() locally, I got | ||
0 errors | 0 warning | 1 notes | ||
|
||
The note reads: | ||
* Maintainer: 'R.Andres Castaneda <[email protected]>' | ||
|
||
New submission | ||
Possibly mis-spelled words in DESCRIPTION: | ||
|
||
Stata (11:29) | ||
dplyr (10:39) | ||
|
||
Explanation: My Name is "R.Andres". Also, I need to mention both Stata and the | ||
R package dplyr to make it clear what my package does. | ||
|
||
* When run in Github Actions, I got, | ||
0 errors | 0 warning | 0 notes | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.