-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Match new devtools requirements (#47)
* Match new devtools requirements * Start editing unittest to make them more readable
- Loading branch information
1 parent
5a5a195
commit 30dd044
Showing
51 changed files
with
2,885 additions
and
6,181 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
README.md | ||
CONTRIBUTING.rst | ||
^\.travis\.yml$ | ||
^\.idea$ |
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,23 +1,23 @@ | ||
Package: dataPreparation | ||
Title: Automated Data Preparation | ||
Version: 0.3.8 | ||
Authors@R: person("Emmanuel-Lin", "Toulemonde", email = "[email protected]", role = c("aut", "cre")) | ||
Description: Do most of the painful data preparation for a data science project with a minimum amount of code; Take advantages of data.table efficiency and use some algorithmic trick in order to perform data preparation in a time and RAM efficient way. | ||
Depends: | ||
R (>= 3.3.0), | ||
lubridate, | ||
stringr, | ||
Matrix, | ||
progress | ||
License: GPL-3 | file LICENSE | ||
LazyData: true | ||
Encoding: UTF-8 | ||
RoxygenNote: 6.1.0 | ||
Suggests: knitr, | ||
rmarkdown, | ||
kableExtra, | ||
pander, | ||
testthat (>= 2.0.0) | ||
VignetteBuilder: knitr | ||
Imports: data.table | ||
BugReports: https://github.com/ELToulemonde/dataPreparation/issues | ||
Package: dataPreparation | ||
Title: Automated Data Preparation | ||
Version: 0.3.9 | ||
Authors@R: person("Emmanuel-Lin", "Toulemonde", email = "[email protected]", role = c("aut", "cre")) | ||
Description: Do most of the painful data preparation for a data science project with a minimum amount of code; Take advantages of data.table efficiency and use some algorithmic trick in order to perform data preparation in a time and RAM efficient way. | ||
Depends: | ||
R (>= 3.3.0), | ||
lubridate, | ||
stringr, | ||
Matrix, | ||
progress | ||
License: GPL-3 | file LICENSE | ||
LazyData: true | ||
Encoding: UTF-8 | ||
RoxygenNote: 6.1.1 | ||
Suggests: knitr, | ||
rmarkdown, | ||
kableExtra, | ||
pander, | ||
testthat (>= 2.0.0) | ||
VignetteBuilder: knitr | ||
Imports: data.table | ||
BugReports: https://github.com/ELToulemonde/dataPreparation/issues |
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,50 +1,50 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
export(aggregateByKey) | ||
export(as.POSIXct_fast) | ||
export(build_bins) | ||
export(build_encoding) | ||
export(build_scales) | ||
export(dataPrepNews) | ||
export(dateFormatUnifier) | ||
export(description) | ||
export(fastDiscretization) | ||
export(fastFilterVariables) | ||
export(fastHandleNa) | ||
export(fastIsEqual) | ||
export(fastRound) | ||
export(fastScale) | ||
export(findAndTransformDates) | ||
export(findAndTransformNumerics) | ||
export(generateDateDiffs) | ||
export(generateFactorFromDate) | ||
export(generateFromCharacter) | ||
export(generateFromFactor) | ||
export(identifyDates) | ||
export(one_hot_encoder) | ||
export(prepareSet) | ||
export(sameShape) | ||
export(setAsNumericMatrix) | ||
export(setColAsCharacter) | ||
export(setColAsDate) | ||
export(setColAsFactor) | ||
export(setColAsNumeric) | ||
export(shapeSet) | ||
export(unFactor) | ||
export(whichAreBijection) | ||
export(whichAreConstant) | ||
export(whichAreInDouble) | ||
export(whichAreIncluded) | ||
import(data.table) | ||
importFrom(Matrix,sparse.model.matrix) | ||
importFrom(lubridate,is.Date) | ||
importFrom(lubridate,is.POSIXct) | ||
importFrom(lubridate,is.POSIXlt) | ||
importFrom(lubridate,is.POSIXt) | ||
importFrom(lubridate,parse_date_time) | ||
importFrom(progress,progress_bar) | ||
importFrom(stats,as.formula) | ||
importFrom(stats,contrasts) | ||
importFrom(stats,model.matrix) | ||
importFrom(stats,sd) | ||
importFrom(stringr,str_replace_all) | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(aggregateByKey) | ||
export(as.POSIXct_fast) | ||
export(build_bins) | ||
export(build_encoding) | ||
export(build_scales) | ||
export(dataPrepNews) | ||
export(dateFormatUnifier) | ||
export(description) | ||
export(fastDiscretization) | ||
export(fastFilterVariables) | ||
export(fastHandleNa) | ||
export(fastIsEqual) | ||
export(fastRound) | ||
export(fastScale) | ||
export(findAndTransformDates) | ||
export(findAndTransformNumerics) | ||
export(generateDateDiffs) | ||
export(generateFactorFromDate) | ||
export(generateFromCharacter) | ||
export(generateFromFactor) | ||
export(identifyDates) | ||
export(one_hot_encoder) | ||
export(prepareSet) | ||
export(sameShape) | ||
export(setAsNumericMatrix) | ||
export(setColAsCharacter) | ||
export(setColAsDate) | ||
export(setColAsFactor) | ||
export(setColAsNumeric) | ||
export(shapeSet) | ||
export(unFactor) | ||
export(whichAreBijection) | ||
export(whichAreConstant) | ||
export(whichAreInDouble) | ||
export(whichAreIncluded) | ||
import(data.table) | ||
importFrom(Matrix,sparse.model.matrix) | ||
importFrom(lubridate,is.Date) | ||
importFrom(lubridate,is.POSIXct) | ||
importFrom(lubridate,is.POSIXlt) | ||
importFrom(lubridate,is.POSIXt) | ||
importFrom(lubridate,parse_date_time) | ||
importFrom(progress,progress_bar) | ||
importFrom(stats,as.formula) | ||
importFrom(stats,contrasts) | ||
importFrom(stats,model.matrix) | ||
importFrom(stats,sd) | ||
importFrom(stringr,str_replace_all) |
Oops, something went wrong.